<action>

语法
<action android:name="string" />
包含在
<intent-filter>

说明
向意图过滤器添加操作。一个 <intent-filter> 元素必须包含一个或多个 <action> 元素。如果意图过滤器中没有 <action> 元素,则该过滤器不接受任何 Intent 对象。有关意图过滤器及其在过滤器中操作规范的作用的详细信息,请参阅 意图和意图过滤器.
属性
android:name
操作的名称。一些标准操作在 Intent 类中定义为 ACTION_string 常量。要将这些操作之一分配给此属性,请在 ACTION_ 之后的 string 前面加上 android.intent.action.。例如,对于 ACTION_MAIN,请使用 android.intent.action.MAIN,对于 ACTION_WEB_SEARCH,请使用 android.intent.action.WEB_SEARCH.

对于您定义的操作,最好使用您的应用包名作为前缀,以帮助确保唯一性。例如,一个 TRANSMOGRIFY 操作可以指定如下

<action android:name="com.example.project.TRANSMOGRIFY" />
在中引入
API 级别 1
另请参阅
<intent-filter>