AndroidMainfest.xml是一个描述Android应用程序整体信息的结构化XML配置文件。该文件描述了应用程序的环境及支持的四大组件和处理的Intent信息,描述了项目的权限,外部库和设备特性等信息。AndroidManifest.xml文件是Android系统重要的权限申请和定义配置文件,程序员在开发时需要通过其来向系统预先定义和申请应用程序运行所需要的权限。灵活、安全地使用该配置文件是Android安全保障的一个不可忽视的方面,
下面给出一个简单的AndroidManifest.xml文件信息:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sywyg.sqlitetest" >
<uses-permission/>
<permission/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library />
</application>
</manifest>
Android应用程序中并没有一个单独的程序入口,而是通过设置<intent-filter>
(设置为如上形式)来设置程序的入口。在所有的标签中只有<manifest>
和<application>
是必须的且只能有一对。处于同一级的标签没有顺序。下面分析一下各个属性或标签含义:
原文地址:http://blog.csdn.net/wangyongge85/article/details/46617899