Eclipse 插件和 ADT 修改 API Integration in Create Project 菜单

Eclipse Plugin and ADT modification for API Integration in Create Project menu

我计划创建一个与 Android 项目的 API 集成相关的插件。我可以在哪里添加我想要添加的 check/mark API,它应该添加所有相关文件并将示例集成到 Main_Activity / 或默认 activity 哪个用户创建。

作为 初学者 我需要知道:

1) Do i need to start studying eclipse code or ADT Plugin only?

2) Is there is any such plugin already available?

3) Which category of the ADT i need to start learning such that i can start working from it in the Create android project menu?

到目前为止,我已经开始检查 ADT 代码了。网上没有任何内容,所以我不能告诉你我做了什么。

我看到 IDE 插件中实现了新建项目向导。源代码可在此处获得:https://android.googlesource.com/platform/sdk/+/master/eclipse/plugins/com.android.ide.eclipse.adt/您可能需要查看代码和模板文件夹以了解更多详细信息

你应该知道的几件事:

1) ADT 插件已弃用;不过

2) 没有像你想要的那样的东西。

3) Android 使用这样的模板创建项目

所以,如果你想在代码中添加一个例子。有两种方式

  • 拥有自己的迷你语言,以便生成示例集成代码
  • 像Google这样的预定义模板已经有

4) 从ADT Plugin you need to understand THIS.

开始之前

5) 最好将 Windows Builder 添加到 Eclipse JDT 环境(开发所需的环境)。

6) 在开始在项目中进行归档之前,您可能还需要了解 NewProjectCreator 在 adt 中的工作方式。