Intent Filter
0pt
暗黙的インテントが発生したとき、フィルター(条件)によって、そのインテントに応じるかどうかをアプリが判断するが、その時の条件を決めているのがIntentFilter。なんだか一杯あって覚えられないので特定の条件を以下に列挙していってみる。
- ブラウザの「ページの共有」から起動
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
- ブラウザでリンク遷移しようとしたときに起動
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http" />
※リンク先が「http:」である場合に起動
http://www.techdoctranslator.com/android/guide/manifest/data...
http://developer.android.com/intl/ja/reference/android/conte...
http://developer.android.com/intl/ja/reference/android/conte...
コメントはまだありません