<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>
此页面上的内容和代码示例受 内容许可 中描述的许可的约束。Java 和 OpenJDK 是 Oracle 和/或其关联公司的商标或注册商标。
上次更新时间为 2023 年 3 月 22 日协调世界时。
[{ "type": "thumb-down", "id": "missingTheInformationINeed", "label":"缺少我需要的資訊" },{ "type": "thumb-down", "id": "tooComplicatedTooManySteps", "label":"太複雜/步驟太多" },{ "type": "thumb-down", "id": "outOfDate", "label":"過時" },{ "type": "thumb-down", "id": "samplesCodeIssue", "label":"範例/代碼問題" },{ "type": "thumb-down", "id": "otherDown", "label":"其他" }]
[{ "type": "thumb-up", "id": "easyToUnderstand", "label":"易於理解" },{ "type": "thumb-up", "id": "solvedMyProblem", "label":"解決了我的問題" },{ "type": "thumb-up", "id": "otherUp", "label":"其他" }]
{ "lastModified": "最後更新於 2023-03-22 UTC。", "confidential": False }