• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps how to let NFC response to foreground activity

lye85

Newbie
current i have Activity_A and Activity_B



<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />

<data
android:host="ext"
android:pathPrefix="/xxx.com:IService"
android:scheme="vnd.android.nfc" />
</intent-filter>

this is a NFC feature plug with Activity_A,

now i want android to fire onResume in Activity_B if Activity_B is focused. possible?

can NfcAdapter.enableForegroundNdefPush and NfcAdapter.enableForegroundDispatch handle this kind of operation?
 
Back
Top Bottom