启动一个NFC意图最近没有显示的应用程序

时间:2018-01-08 16:31:21

标签: android android-intent nfc

我有一个简单的应用程序,它将读取NFC标签,我能够运行它,它工作正常。问题是如果应用程序是从NDEF_DISCOVERED意图过滤器自动启动的,它将不会出现在最近的应用程序上,如果我从自己启动它,我可以在最近的列表中看到它。

这是我的清单:

<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.INTERNET" />
<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:roundIcon="@mipmap/ic_launcher_round"
    android:theme="@style/AppTheme"
    android:excludeFromRecents="false"
    android:launchMode="singleTop">

    <activity android:name=".MainActivity" android:screenOrientation="landscape" android:label="@string/app_name" android:excludeFromRecents="false" android:launchMode="singleTop">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
        </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>
        <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" />
        <intent-filter>
            <action android:name="android.nfc.action.TAG_DISCOVERED"/>
        </intent-filter>
    </activity>
</application>

知道为什么会出现这个问题吗?我正在使用

android:excludeFromRecents="false"
android:launchMode="singleTop"
android:label="@string/app_name"

我读过的可能是问题,但还没有解决方案。

0 个答案:

没有答案