NFC类型默认应用

NFC type default app

我刚开始使用 NFC。扫描 NFC 标签时,我的应用默认打开,但我有 2 个问题:

  1. 出于某种原因,我无法在启动器应用程序浏览器中看到我的应用程序。

  2. 如何定义只有URL类型的NFC才能打开应用程序?

    <uses-permission android:name="android.permission.NFC" />
    <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:supportsRtl="true"
        android:theme="@style/AppTheme">
    
            <activity android:name=".MainActivity">
            <intent-filter>
    
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/plain" />
    
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data
                android:name="android.nfc.action.TECH_DISCOVERED"
                android:resource="@xml/nfc_tech_filter" />
        </activity>
    </application>
    

第一个问题(应用程序未显示在启动器中)是由于多个过滤条件在一个 <intent-filter> 部分中组合的方式(请参阅 Intents and Intent Filters。您可以通过拆分意图轻松解决此问题过滤成单独的 <intent-filter> 个部分:

<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>

第二个问题取决于您在标签上存储的数据(NDEF 记录)。例如,如果您存储了包含 URL https://whosebug.com/ 的 URI 记录,您将使用以下意图过滤器:

<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="https" android:host="whosebug.com" />
</intent-filter>

您可能还想查看

  • Nfc and Intent-filter
  • Get NFC tag with NDEF Android Application Record (AAR)