只需为要在 NFC 上运行的活动设置意图过滤器,然后在 manifest.xml 上运行
<activity
android:name="com.activity.a"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.activity.b"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="ext"
android:pathPrefix="/com.example:ddcnfc"
android:scheme="vnd.android.nfc" />
</intent-filter>
</activity>
在上面的示例中,活动 A 从 Launcher 运行,活动 B 从 NFC 运行。
然后在activty B类的onResume函数中,
@Override
public void onResume() {
super.onResume();
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(getIntent().getAction())) {
//Your initialization goes here
}
}