1

当我的智能手机扫描 NDEF 消息时,我正在尝试开始一项活动。这是我的清单:

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

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="17" />

    <uses-permission android:name="android.permission.NFC" />

    <uses-feature android:name="android.hardware.nfc" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.androidbeam.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.example.androidbeam.SendTextActivity" >

        </activity>
        <activity android:name="com.example.androidbeam.ReceiverNDEFActivity" >
            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
                <data
                    android:host="ext"
                    android:pathPrefix="/com.example:externalType"
                    android:scheme="vnd.android.nfc" />
            </intent-filter>
        </activity>
    </application>

</manifest>

每当我扫描我的 NDEF 消息时,我的主要活动都会启动,但我希望我的 ReceiverNDEFActivity 启动。我不确定为什么会这样。

这是我的 NdefMessage:

@Override
public NdefMessage createNdefMessage(NfcEvent event) {
    byte[] payload= new String("Hello");
    String domain = "com.example";
    String type = "externalType"; 
    NdefRecord extRecord = NdefRecord.createExternal(domain, type, payload);

    NdefMessage msg = new NdefMessage(new NdefRecord[] { extRecord });
    return msg;
}
4

2 回答 2

2

诀窍是 NFC 论坛外部类型名称不区分大小写。然而,Android 的意图过滤系统是区分大小写的。因此,您必须始终在您的意图过滤器中使用所有小写的外部类型名称:

<activity android:name="com.example.androidbeam.ReceiverNDEFActivity" >
    <intent-filter>
        <action android:name="android.nfc.action.NDEF_DISCOVERED" />
        <category android:name="android.intent.category.DEFAULT" />
        <data
            android:scheme="vnd.android.nfc"
            android:host="ext"
            android:pathPrefix="/com.example:externaltype" />
    </intent-filter>
</activity>

请注意,该NdefRecord.createExternal(...)方法会自动将所有类型名称转换为小写拼写。

于 2013-10-05T08:37:45.033 回答
0

我认为清单看起来还不错。也许你可以尝试添加

安卓:导出=“真”

到应该接收 NFC 扫描意图的活动。

    <activity android:name="com.example.androidbeam.ReceiverNDEFActivity" >
        <intent-filter>
            <action android:name="android.nfc.action.NDEF_DISCOVERED"
            android:exported="true"
            />
            <category android:name="android.intent.category.DEFAULT" />
            <data
                android:host="ext"
                android:pathPrefix="/com.example:externalType"
                android:scheme="vnd.android.nfc" />
        </intent-filter>
    </activity>

您是否使用 NFC 标签进行扫描?

于 2013-10-01T21:16:36.317 回答