これを行うには、アプリケーションが作成しているインテントを認識し、アプリケーションを特定のリストに追加するIntentFilterを作成する必要があります。
インテントとフィルターで暗黙のインテントを受信する(
アプリケーションはおそらく、フックできる特定のアクション名を使用します。
<intent-filter . . . >
<action android:name="com.example.project.SHOW_CURRENT" />
<action android:name="com.example.project.SHOW_RECENT" />
<action android:name="com.example.project.SHOW_PENDING" />
. . .
</intent-filter>
または、特定の種類のファイルを受け入れるアプリケーションを探している可能性があります。
<intent-filter . . . >
<data android:mimeType="video/mpeg" android:scheme="http" . . . />
<data android:mimeType="audio/mpeg" android:scheme="http" . . . />
. . .
</intent-filter>
アプリケーションの名前とそれが共有しているものは、より具体的な応答をするのに役立ちます。