Manifest 文件 详解


本文地址:http://blog.csdn.net/caroline_wendy/article/details/20899281


Manifest可以定义应用程序及其组件需求的结构和元数组.

Android的文档:http://developer.android.com/guide/topics/manifest/manifest-element.html

Hello_World, AndroidManifest.xml :

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="mzx.spike.hello_world.app" >    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name="mzx.spike.hello_world.app.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>    </application></manifest>

xmlns:xml namespace的简写, android的命名空间;

package: 程序使用的包的名称;

application: manifest必须包含(must contain)的结点, 使用各种属性来指定应用程序的各种元数据;

activity: application的可选标签, 声明一个活动(Activity的子类), 实现应用程序得视觉用户接口(visual user interface)的部分功能;

intent-filter: 目的过滤器, 启动该activity的Intent(目的);

action:intent-filter的必选(must contain)标签, 目的过滤器的活动;

category: intent-filter的可选(can contain)标签, 目的过滤器的种类;


其中action和category里面, name属性的意思, 在Intent文档里面有标注;

文档:http://developer.android.com/reference/android/content/Intent.html


Manifest还可以使用Android Manifest Editor(Eclipse)进行管理XML, 界面化管理;

在Android Studio暂时没有此类功能;



更多相关文章

  1. Android之应用程序基础
  2. Android四大组件的理解
  3. Android官方入门文档[1]创建一个Android项目
  4. 第三章 Android程序设计基础
  5. Android(安卓)任务和回退堆栈---启动任务
  6. Android(安卓)Studio 3.0开始android Device Monitor弃用
  7. 开机引导程序只执行一次的方法
  8. 使用uiautomatorviewer和uiautomator来做android的UI测试
  9. Android四大组件的理解

随机推荐

  1. Android之网络连接判断
  2. [Android学习十一]Android开发单元测试
  3. android bundle 在activity之间传递数据
  4. Android(安卓)悬浮窗开发的坑
  5. android控件的对齐方式
  6. Android—— Activity生命周期
  7. Android媒体解码MediaCodec MediaExtract
  8. android客户端从服务器端获取json数据并
  9. Android之Content ProviderII
  10. 淘宝(阿里百川)手机客户端开发日记第一篇