创建Android项目时,一些名词的总结:
Project Name:这个和一般的Java项目没有什么两样。
Package Name:同上,包名最好符合命名规则。
Application Name:这个是自己所做的应用开发插件的标题,可以弄得非常具有可读化。
比较关键的是Activity Name:
---
This is the name for the class stub that will be generated by the plugin. This will be a subclass of Android's Activity class. An Activity is simply a class that can run and do work. It can create a UI if it chooses, but it doesn't need to.
---
看来android设计run and do work的是Activity类,而我们所做的工作在于扩展这一类,产生丰富多彩的实际应用。
Project Name:这个和一般的Java项目没有什么两样。
Package Name:同上,包名最好符合命名规则。
Application Name:这个是自己所做的应用开发插件的标题,可以弄得非常具有可读化。
比较关键的是Activity Name:
---
This is the name for the class stub that will be generated by the plugin. This will be a subclass of Android's Activity class. An Activity is simply a class that can run and do work. It can create a UI if it chooses, but it doesn't need to.
---
看来android设计run and do work的是Activity类,而我们所做的工作在于扩展这一类,产生丰富多彩的实际应用。