当我使用另一个开发应用程序时,我不想打开已经关闭的应用程序

时间:2017-12-12 05:51:30

标签: android background nfc

我的代码在这里,它会在标记任何NFC时在后台打开(或关闭)

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.nfc_rfid_rw.MainActivity"
            android:label="@string/app_name" 
            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"/>
              <data android:mimeType="text/plain" />
            </intent-filter>
            <intent-filter>
                <action
                    android:name="android.nfc.action.TAG_DISCOVERED">
                </action>
                <category
                    android:name="android.intent.category.DEFAULT">
                </category>
            </intent-filter>
            <intent-filter>
                <action android:name="android.nfc.action.TECH_DISCOVERED" />
            </intent-filter>

            <meta-data
                android:name="android.nfc.action.TECH_DISCOVERED"
                android:resource="@xml/nfc_tech_filter" />

        </activity>
    </application>

我的问题是,当我使用此应用程序扫描任何NFC时,它将无法打开我的应用程序,我想做同样的事情,我不想打开这个应用程序,当我使用另一个应用程序时,它将在后台打开(我的开发应用程序)。

我使用的这个应用程序不会打开我的应用程序(不是我的开发应用程序)

enter image description here

app https://play.google.com/store/apps/details?id=com.wakdev.wdnfc&hl=zh_TW

1 个答案:

答案 0 :(得分:0)

在此项目中找到答案https://github.com/nadam/nfc-reader

onCreate中,它有PendingIntent,如下所示:

pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

的onResume:

nfcAdapter.enableForegroundDispatch(this, pendingIntent, null, null);

在我的应用程序中定义此内容后,我开发的每个应用程序都不会跳转到我的第一个应用程序(或选择我想要使用的应用程序),我只能使用前台应用程序!!