Android 1.5、1.6android.intent.category.ALTERNATIVE android.intent.category.BROWSABLE android.intent.category.DEFAULTandroid.intent.category.DEVELOPMENT_PREFERENCE android.intent.category.EMBED android.intent.category.HOME android.intent.category.INFO android.intent.category.LAUNCHER android.intent.category.MONKEY android.intent.category.OPENABLE android.intent.category.PREFERENCE android.intent.category.SELECTED_ALTERNATIVE android.intent.category.TAB Android 2.0,2.0.1,2.1 新增車座和充電座android.intent.category.CAR_DOCK android.intent.category.DESK_DOCK Android 2.2 新增行車模式android.intent.category.CAR_MODE ALTERNATIVE
你將在這章的後面所看到的,一個 Intent Filter 的用途是使用動作來幫忙填入操作功能表。 ALTERNATIVE 種類指定,在某種資料類型的項目上可以替代預設執行的動作。例如,一個連絡人的預設動作時瀏覽它,替代的可能是去編輯或刪除它。❑ SELECTED_ALTERNATIVE與 ALTERNATIVE 類似,但 ALTERNATIVE 總是使用下面所述的 Intent 解析來指向單一的動作。SELECTED_ALTERNATIVE在需要一個可能性列表時使用。❑ BROWSABLE指定在瀏覽器中的動作。當 Intent 在瀏覽器中被引發,都會被指定成 BROWSABLE 種類。❑ DEFAULT設定這個種類來讓組件成為 Intent Filter 中定義的 data 的預設動作。這對使用顯式 Intent 啟動的 Activity 來說也是必要的。❑ GADGET通過設定 GADGET 種類,你可以指定這個 Activity 可以嵌入到其他的 Activity 來允許。❑ HOMEHOME Activity 是裝置啟動(登陸螢幕)時顯示的第一個 Activity 。通過指定 Intent Filter 為 HOME 種類而不指定動作的話,你正在將其設為本地 home 畫面的替代。❑ LAUNCHER使用這個種類來讓一個 Activity 作為應用程式的啟動項。❑ datadata 標籤允許你指定組件能作用的資料的匹配;如果你的組件能處理多個的話,你可以包含多個條件。你可以使用下面屬性的任意組合來指定組件支援的資料:❑ android:host指定一個有效主機名稱(例如, com.google )。❑ android:mimetype允許你設定組件能處理的資料類型。例如,<type android:value=”vnd.android.cursor.dir/*”/>能匹配任何 Android 遊標。❑ android:path有效地 URI 路徑值(例如, /transport/boats/ )。❑ android:port特定主機上的有效連接埠。❑ android:scheme需要一個特殊的圖示(例如, content 或 http )。轉自:http://tantan.iteye.com/blog/1329438