gpt4 book ai didi

android - 近场通信。扫描 NDEF 消息时启动 Activity

转载 作者:行者123 更新时间:2023-11-29 21:32:32 24 4
gpt4 key购买 nike

当我的智能手机扫描到 NDEF 消息时,我正在尝试开始一项 Activity 。这是我的 list :

<?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 消息时,我的主要 Activity 都会启动,但我希望我的 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;
}

最佳答案

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

<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(...) 方法会自动将所有类型名称转换为小写拼写。

关于android - 近场通信。扫描 NDEF 消息时启动 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19125161/

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