<アクション>
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
- 構文:
<action android:name="string" />
- 上位の要素:
<intent-filter>
- 説明:
- インテント フィルタにアクションを追加します。
<intent-filter>
要素には、1 つまたは複数の <action>
要素が含まれている必要があります。インテント フィルタ内に <action>
要素が存在しない場合、フィルタは Intent
オブジェクトを受け入れません。
インテント フィルタの詳細やフィルタ内におけるアクション指定の役割については、インテントとインテント フィルタをご覧ください。
- 属性:
android:name
- アクションの名前。一部の標準アクションは、
Intent
クラス内で ACTION_string
定数として定義されています。アクションの 1 つをこの属性に割り当てるには、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 レベル:
- API レベル 1
- 関連項目:
<intent-filter>
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2024-08-22 UTC。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"必要な情報がない"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"複雑すぎる / 手順が多すぎる"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"最新ではない"
},{
"type": "thumb-down",
"id": "translationIssue",
"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": "\u6700\u7d42\u66f4\u65b0\u65e5 2024-08-22 UTC\u3002"}
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-08-22 UTC。"]]