app必须在AndroidManifest.xml文件中声明他所有的components。该文件必须在app公告称的目录的根。
manifest除了声明app的components还做了另外一堆事情:
1.认证app需要的user permissions
2.声明app所需要的最小的API Level
3.声明app使用的硬件以及需要的软件特征
4.app需要去连接的API库
5.等等
Declaring components
android:icon属性指向确认app的icon资源
android:name属性指定了activity的类名
android:label属性指定了作为用户可见的label来使用的string
必须用这三个属性声明所有的app components:
<activity>、<service>、<receiver>、<provider>
时间: 2024-12-10 04:05:56