可以广播接收器处理ACTION_NDEF_DISCOVERED吗?

时间:2014-07-30 23:00:15

标签: android broadcastreceiver nfc

我正在尝试编写一个可以执行以下操作的应用程序:

一旦用户解锁手机,他有10秒钟扫描NFC标签以启动相机应用程序。并且NFC标签将具有mime类型 应用/ com.testformat.nfcdemo

为了检测屏幕解锁,我使用广播接收器检测到用户在场。 这很好。

我在广播接收器内开了一个CountdownTimer 10秒钟。

NFC检测部分不起作用,我可以在这里使用一些帮助!谢谢大家!

My activity:

import android.app.Activity;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;

public class DisplayActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_layout);

    }
}

Manifest xml:

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

    <uses-feature android:name="android.hardware.nfc" android:required="true" />
    <uses-permission android:name="android.permission.NFC" />

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

    <application android:icon="@drawable/icon" android:label="@string/app_name">

        <activity
                android:name=".DisplayActivity"
                android:label="@string/activity_title" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name=".ScreenStateReceiver">
            <intent-filter>
                <action android:name="android.intent.action.USER_PRESENT" />
            </intent-filter>

            <intent-filter>
                <action android:name="android.nfc.action.TAG_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="application/com.testformat.nfcdemo" />
            </intent-filter>
        </receiver>

    </application>
</manifest>

Receiver:

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.nfc.NfcAdapter;
import android.os.CountDownTimer;
import android.widget.Toast;

public class ScreenStateReceiver extends BroadcastReceiver {
    private boolean countdown_end = false;
    NfcAdapter mNfcAdapter;
    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getAction().equals(Intent.ACTION_USER_PRESENT)) {

            CharSequence text = context.getResources().getString(R.string.unlock_message);
            int duration = Toast.LENGTH_SHORT;
            Toast toast = Toast.makeText(context, text, duration);
            toast.show();
            startCountdown(10000);

            if (intent.getAction().equals(NfcAdapter.ACTION_NDEF_DISCOVERED)) {

                if (!countdown_end) {
                    text = context.getResources().getString(R.string.nfc_detected);
                    Toast nfc_toast = Toast.makeText(context, text, duration);
                    toast.show();
                }
            }else if ( intent.getAction().equals(NfcAdapter.ACTION_TAG_DISCOVERED)){
                if (!countdown_end) {
                    text = context.getResources().getString(R.string.nfc_detected);
                    Toast nfc_toast = Toast.makeText(context, text, duration);
                    toast.show();
                }
            }

        }
    }

    private void startCountdown(long milliseconds){
        new CountDownTimer(milliseconds, 1000) {
            @Override
            public void onTick(long l) {
            }

            public void onFinish() {
                countdown_end=true;
            }
        }.start();
    }
}

1 个答案:

答案 0 :(得分:2)

  

可以广播接收者处理ACTION_NDEF_DISCOVERED吗?

没有。这是一项与startActivity()一起使用的活动操作。它不是广播,因此BroadcastReceiver无法接收。