13

当我的手机扫描 NFC 标签时,我正在尝试启动特定活动。这是我的清单的样子:

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

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.lgandroid.ddcnfc.BluePrintActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
            <data android:mimeType="application/com.lgandroid.ddcnfc"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
    </activity>
    <activity
        android:name="com.lgandroid.ddcnfc.LoginActivity"
        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.lgandroid.ddcnfc.MainActivity"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.lgandroid.ddcnfc.PointDiagnosisActivity"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.lgandroid.ddcnfc.PointControlActivity"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.lgandroid.ddcnfc.SystemDiagnosisActivity"
        android:label="@string/app_name" >
    </activity>



    <activity android:name="com.lgandroid.ddcnfc.SettingsActivity" android:label="@string/app_name"></activity>
</application>

每当我扫描我的标签时,我的主要活动都会启动,但我希望我的 BluePrintActivity 启动。我不确定为什么会这样。这是我写入标签的代码:

private boolean writeTag(Tag tag) {
        NdefRecord appRecord = NdefRecord.createApplicationRecord("com.lgandroid.ddcnfc");
        NdefMessage message = new NdefMessage(new NdefRecord[] { appRecord });

        try {
            // see if tag is already NDEF formatted
            Ndef ndef = Ndef.get(tag);
            if (ndef != null) {
                ndef.connect();

                if (!ndef.isWritable()) {
                    nfcTextView.setText("Read-only tag.");
                    return false;
                }

                // work out how much space we need for the data
                int size = message.toByteArray().length;
                if (ndef.getMaxSize() < size) {
                    nfcTextView.setText("Tag doesn't have enough free space.");
                    return false;
                }

                ndef.writeNdefMessage(message);
                nfcTextView.setText("Tag written successfully.");
                return true;
            } else {
                // attempt to format tag
                NdefFormatable format = NdefFormatable.get(tag);
                if (format != null) {
                    try {
                        format.connect();
                        format.format(message);
                        nfcTextView.setText("Tag written successfully!\nClose this app and scan tag.");
                        return true;
                    } catch (IOException e) {
                        nfcTextView.setText("Unable to format tag to NDEF.");
                        return false;
                    }
                } else {
                    nfcTextView.setText("Tag doesn't appear to support NDEF format.");
                    return false;
                }
            }
        } catch (Exception e) {
            nfcTextView.setText("Failed to write tag");
        }

        return false;
    }

编辑:我在上面接受的答案暗示我朝着正确的方向前进,但由于我正在写标签,因此接受答案中的代码并不完全是正确的解决方案。如果您正在写入标签,这就是您需要做的:

 NdefRecord appRecord = new NdefRecord(
            NdefRecord.TNF_MIME_MEDIA ,
            "application/com.lgandroid.ddcnfc".getBytes(Charset.forName("US-ASCII")),
            new byte[0], new byte[0]);
    NdefMessage message = new NdefMessage(new NdefRecord[] { appRecord });

如果要存储有效负载,只需将最后一个参数“new byte[0]”替换为适当的数据。

4

2 回答 2

10

您的应用程序启动的原因是您将 Android 应用程序记录写入标签。这会导致启动具有匹配包名称的应用程序而不是过滤的活动。

因为您正在过滤一个 mime 类型,所以您希望创建一个类型为“application/com.lgandroid.ddcnfc”的 Mime 记录,而不是

NdefRecord appRecord = NdefRecord.createApplicationRecord("com.lgandroid.ddcnfc");

你应该使用:

NdefRecord appRecord = NdefRecord.createMimeRecord("application/com.lgandroid.ddcnfc", byteArray);
于 2012-12-10T12:11:32.230 回答
0

只要您只在标签上存储了一个 AAR,您的应用程序就会以其默认活动(或当前活动堆栈,无论它是什么)启动。因此,AAR 应该是存储在标签上的最后一条记录,仅用于识别应用程序。

如果您有与您的一个活动匹配的附加 NDEF 记录,则有可能会打开相应的活动来处理标签。但是,我的实验此处的另一个问题表明,这种机制并不像宣传的那样起作用。

另一种解决方案可能是将 URL 存储为标签上的消息之一,在您控制的服务器上打开网页(或直接访问 Google Play)。

于 2012-12-10T16:32:40.830 回答