标签:
英文原文:http://developer.android.com/guide/topics/manifest/action-element.html
采集(更新)日期:2014-6-27
搬迁自原博客:http://blog.sina.com.cn/s/blog_48d491300100zmfi.html
<action android:name="string" />
<intent-filter>
<intent-filter>
元素必须包含一个或多个 <action>
元素。 如果其中没有包含任何 <action>
元素,则过滤器不会收到任何 Intent 对象。 关于 Intent 过滤器及过滤器内各种 Action 的用途,详情请参阅 Intent 和 Intent 过滤器 。android:name
Intent
类中已经以 ACTION_string
常量的形式定义了一些标准的 Action。 要将这些 Action 赋予本属性,请以“android.intent.action.
”作为前缀,加在 ACTION_
后的 string
前面。 例如,对于 ACTION_MAIN
而言,用“android.intent.action.MAIN
”, 对于ACTION_WEB_SEARCH
则用“android.intent.action.WEB_SEARCH
”。
对于自定义的 Action ,最好用包名作前缀,以确保唯一性。 例如 TRANSMOGRIFY
动作可以定义如下:
<action android:name="com.example.project.TRANSMOGRIFY" />
<intent-filter>
标签:
原文地址:http://www.cnblogs.com/popapa/p/android_action-element.html