gpt4 book ai didi

android - 当我接近 NFC 标签时,如何使列表消失?

转载 作者:行者123 更新时间:2023-11-30 01:49:29 25 4
gpt4 key购买 nike

我的问题是,当我接近 NFC 标签时,立即出现一个列表,其中包含我为使用 NFC 而开发的所有应用程序,我不想要那个!!我希望仅使用该特定 NFC 标签启动其中一个应用程序。

出现的列表是这样的: enter image description here

而且我希望显示应用程序“NFC UidClass”,而不显示列表(我不会卸载其他 NFC 应用程序)。是这样的: enter image description here

这是我的 AndroidManifest.xml:

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<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>
<uses-permission android:name="android.permission.NFC" />
<uses-feature
android:name="android.hardware.nfc"
android:required="true" />

请有人帮助我。 :)

最佳答案

你必须使用 mime 类型。您可以添加具有特定 mime 类型的 intent-filter ACTION_NDEF_DISCOVEREDhttps://developer.android.com/guide/topics/connectivity/nfc/nfc.html#mime

在您的 AndroidManifest 中:

<activity android:name=".MyActivity">
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/vnd.com.mycompany.data"/>
</intent-filter>
</activity>

例如,创建具有特定 mime 类型的标签:

NdefRecord mimeRecord = NdefRecord.createMime("application/vnd.com.mycompany.data",
"some data".getBytes(Charset.forName("US-ASCII")));

关于android - 当我接近 NFC 标签时,如何使列表消失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33269644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com