首页 > 代码库 > AndroidManifest.xml 各句解释

AndroidManifest.xml 各句解释

2014-08-17

 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- package="com.example.helloworld"      包名 --> 3 <!-- android:versionCode="1"                     版本号 --> 4 <!-- 5       android:installLocation="auto"    自动寻找安装路径,ROM或SDcard,默认  6                                 internalOnly  只能安装ROM上 7                                 preferExternal  安装在SD卡上 8 --> 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"10     package="com.example.halloworld"11     android:versionCode="1"12     android:versionName="1.0" >13 14     <!--android:versionName="1.0"   版本名称 -->15 16 17     <!-- android:minSdkVersion="8"          运行的安卓最低版本 -->18     <uses-sdk19         android:minSdkVersion="8"20         android:targetSdkVersion="19" />21     <!-- 运行的安卓最高版本 -->22 23 24     <!-- application:表示应用程序的配置 -->25     <!-- android:allowBackup="true"             允许备份 -->26     <!-- android:icon="@drawable/ic_launcher"    设置图标,@表示R.java -->27     <!-- android:label="@string/app_name"      程序名称 -->28     <!-- android:theme                    主题 -->29     <application30         android:allowBackup="true"31         android:icon="@drawable/ic_launcher"32         android:label="@string/app_name"33         android:theme="@style/AppTheme" >34 35         36         <!--activity:配置文件中要使用的activity文件  -->37         <!-- android:name="com.example.helloworld.MainActivity"         activity的类名 -->38         <!-- 每增加一个Activity就要在这里写一个<activity> <intent-filter>只属于main-->39         <activity40             android:name="com.example.halloworld.MainActivity"41             android:label="@string/app_name" >42 43             <!-- 程序名称 -->44             <!-- intent-filter      意图过滤器:用来过滤用户的一些动作和操作 -->45             <intent-filter>    <!-- intent-filter:程序一执行就运行此Activity -->46                 <action android:name="android.intent.action.MAIN" />47                 <!-- "android.intent.action.MAIN"决定最先启动的activity -->48 49                 <category android:name="android.intent.category.LAUNCHER" />50                 <!-- 决定程序是否显示在程序列表里 -->51             </intent-filter>52         </activity>53     </application>54 55 </manifest>