我想知道为IntentFilter定义的所有类型的操作。
.vimrc
答案 0 :(得分:0)
查看它包含所有关于意图过滤器的链接 http://developer.android.com/guide/components/intents-filters.html
答案 1 :(得分:0)
动作的名称。一些标准操作在 Intent 类中定义为 ACTION_string 常量。要将这些操作之一分配给此属性,请在前面加上“android.intent.action”。到 ACTION_ 后面的字符串。例如,对于 ACTION_MAIN,使用“android.intent.action.MAIN”,对于 ACTION_WEB_SEARCH,使用“android.intent.action.WEB_SEARCH”。 查看此链接了解更多信息: https://developer.android.com/reference/android/content/Intent#standard-activity-actions