スマート ポスターと AAR が書き込まれた NFC カードを持っています
NdefMessage message = new NdefMessage(smartPosterRecord, aarRecord);
このカードをデバイスに取り付けると、AAR で定義されたデモ アプリケーションが起動しますが、代わりにintent.getAction()
返されるか、タグを取得できません。android.intent.action.MAIN
NfcAdapter.ACTION_TAG_DISCOVERED
NfcAdapter.ACTION_TECH_DISCOVERED
スマート ポスターから URL を読み取るにはどうすればよいですか?
Ndef:
NdefRecord uriRecord = NdefRecord.createUri(uri);
NdefMessage message = new NdefMessage(uriRecord);
NdefRecord smartPosterRecord = new NdefRecord(NdefRecord.TNF_WELL_KNOWN, NdefRecord.RTD_SMART_POSTER, new byte[0], message.toByteArray());
NdefRecord aarRecord = NdefRecord.createApplicationRecord(aar);
message = new NdefMessage(smartPosterRecord, aarRecord);
// Get instance of Ndef for the given tag
Ndef ndef = Ndef.get(tag);
// Enable I/O
ndef.connect();
// Write the message
ndef.writeNdefMessage(message);
// Close the connection
ndef.close();
インテントの扱い:
public void handleIntent(Intent intent) {
if (((NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction()))) || (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction()))) {
// do something
}
マニフェスト:
<activity
android:name="com.demo.app.DemoActivity"
android:label="GeneralDemo"
android:launchMode="singleInstance" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfcfilter" />
</activity>