nfc を使用してチェックインする Andriod アプリを作成しています。タグの URL が「http://examples.com」であるとしましょう。そのタグをタップしたときにのみ、アプリケーションを開きたいと思います。
したがって、基本的にはメインフェストでインテント フィルターを編集するだけです。URLを持つタグをタップするたびにhttp://developer.andriod.com/index.html
アプリが開くように
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="http"
android:host="developer.android.com"
android:pathPrefix="/index.html" />
</intent-filter>