首页 > 代码库 > Android 官方文档:(二)应用清单 —— 2.2 <action>标签
Android 官方文档:(二)应用清单 —— 2.2 <action>标签
syntax:
<action android:name="string" />
- contained in:
<intent-filter>
- description:
- Adds an action to an intent filter.An
<intent-filter>
element must contain one or more<action>
elements. If it doesn‘t contain any, noIntent objects will get through the filter. See Intents and Intent Filters for details on intent filters and the role of actionspecifications within a filter. - attributes:
android:name
- The name of the action. Some standard actions are defined in the
Intent
class asACTION_string
constants. To assign one of these actions to this attribute, prepend "android.intent.action.
" to thestring
that followsACTION_
.For example, forACTION_MAIN
, use "android.intent.action.MAIN
"and forACTION_WEB_SEARCH
, use "android.intent.action.WEB_SEARCH
".For actions you define, it‘s best to use the package name as a prefix toensure uniqueness. For example, a
TRANSMOGRIFY
action might be specified as follows:<action android:name="com.example.project.TRANSMOGRIFY" />
- introduced in:
- API Level 1
- see also:
<intent-filter>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。