您好,登錄后才能下訂單哦!
本文地址: 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>
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暫時沒有此類功能;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。