码迷,mamicode.com
首页 > 移动开发 > 详细

Android 官方文档:(二)应用清单 —— 2.2 <action>标签

时间:2014-06-18 14:48:12      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:des   android   class   code   http   tar   

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 theIntent class as ACTION_string constants. To assign one of these actions to this attribute, prepend "android.intent.action." to the string that follows ACTION_.For example, for ACTION_MAIN, use "android.intent.action.MAIN"and for ACTION_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>

Android 官方文档:(二)应用清单 —— 2.2 &lt;action&gt;标签,布布扣,bubuko.com

Android 官方文档:(二)应用清单 —— 2.2 &lt;action&gt;标签

标签:des   android   class   code   http   tar   

原文地址:http://www.cnblogs.com/mengfanrong/p/3791457.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!