找到NFC标签时,活动会重新打开

时间:2015-11-03 15:30:26

标签: java android nfc

我正在开发一款应该检测NFC标签的应用。 我的问题是每次应用扫描标签时我的活动都会重新打开。应该只在应用关闭时打开。但是当它处于活动状态时,我只想要标记中的数据。

清单:

?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.corinna.nfc_testapp" >

<uses-permission android:name="android.permission.NFC" />
<uses-sdk android:minSdkVersion="14"/>
<uses-feature android:name="android.hardware.nfc"    android:required="true" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar"
        >
        <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"/>
            <data android:mimeType="text/plain" />
        </intent-filter>
    </activity>
</application>

</manifest>

活动onCreate&amp; handleIntent

rotected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    //Fragment ReadOrWrite
    fRead = (Fragment_Read) Fragment.instantiate(getApplicationContext(), Fragment_Read.class.getName(), null);
    Fragment_ReadOrWrite fReadOrWrite = (Fragment_ReadOrWrite) Fragment.instantiate(getApplicationContext(), Fragment_ReadOrWrite.class.getName(), null);
    fReadOrWrite.setFragment_Read(fRead);
    FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
    fragmentTransaction.replace(R.id.id_activity_main, fReadOrWrite);
    fragmentTransaction.commit();


    //NFC

    mNfcAdapter = NfcAdapter.getDefaultAdapter(this);

    handleIntent(getIntent());
}

private void handleIntent(Intent intent) {
    String action = intent.getAction();
    if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(action)) {

        String type = intent.getType();
        if (MIME_TEXT_PLAIN.equals(type)) {

            Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
            NdefReaderTask ndefReader = new NdefReaderTask(fRead);
            ndefReader.execute(tag);

        } else {
            System.out.println("Wrong mime type: " + type);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

只需在主要活动清单中使用launchMode="singleTop"即可。 这将确保如果您的活动位于任务堆栈的顶部,则不会重新创建它。

请注意,在这种情况下不再调用onCreate,因此如果您想从intent中读取内容,则需要覆盖onNewIntent Activity方法。