在读取NFC标签时防止应用程序暂停

时间:2014-03-11 19:14:16

标签: java android nfc ndef

我正在构建一个Android应用程序,它将使用ndeftools库读取NFC标签。

当我在我的应用程序中读取标签时,它最小化并由内置的Android标签阅读器处理。是否可以停止应用程序暂停,只需让它在TextView中显示内容。

注意:TagReaderActivity只是一个扩展的NfcReaderActivity

这是我目前的代码:

import org.ndeftools.Message;

import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.seaf.nfc.TagReaderActivity;

public class DemoNFCActivity extends TagReaderActivity {

    protected LinearLayout linearLayout;

    private static final String DEMO = DemoNFCActivity.class.getName();

    protected TextView feature;
    protected TextView state;
    protected TextView data;

    @Override
    public void onCreate(Bundle savedInstanceState) {


        this.setContentView(R.layout.layout_demo_nfc);

        feature = (TextView) findViewById(R.id.textView1);
        state = (TextView) findViewById(R.id.textView2);
        data = (TextView) findViewById(R.id.textView3);

        super.onCreate(savedInstanceState);

    }


    @Override
    protected void readNdefMessage(Message message) {

//      [INSERT SOLUTION HERE] :D
//      
//      if (data != null) {
//          
//          data.setText(message.toString());
//          data.setBackgroundColor(getResources().getColor(R.color.green_light));
//          
//      }

    }

    @Override
    protected void onNfcFeatureFound() {

        super.onNfcFeatureFound();

        if (feature != null) {

            feature.setText(getString(R.string.nfc_feature_true));
            feature.setBackgroundColor(getResources().getColor(R.color.green_light));

        }
    }

    @Override
    protected void onNfcFeatureNotFound() {

        super.onNfcStateDisabled();

        if (feature != null) {

            feature.setText(getString(R.string.nfc_feature_false));
            feature.setBackgroundColor(getResources().getColor(R.color.red_light));

        }

    }

    @Override
    protected void onNfcStateEnabled() {

        super.onNfcStateEnabled();

        if (state != null) {

            state.setText(getString(R.string.nfc_state_true));
            state.setBackgroundColor(getResources().getColor(R.color.green_light));

        }

    }

    @Override
    protected void onNfcStateDisabled() {

        super.onNfcStateDisabled();

        if (state != null) {

            state.setText(getString(R.string.nfc_state_false));
            state.setBackgroundColor(getResources().getColor(R.color.red_light));

        }

    }

}

2 个答案:

答案 0 :(得分:1)

NFC子系统首先调用onPause(),然后调用onNewIntent()然后调用onResume()。你不应该解决这个问题,因为整个过程非常简短。

这里的问题似乎是您的前台模式未激活。请参阅DefaultNfcReaderActivity中的onCreate()方法,并记下对

的调用
setDetecting(true);

之所以如此,是因为您不一定希望始终接受传入的NFC流量。

答案 1 :(得分:0)

您需要注册前台调度系统(如果您的应用仅适用于Android 4.4+,则需要注册阅读器模式系统)。有关如何使用前台调度系统的详细信息,请参阅Android NFC documentation

关于ndeftools库,NfcDetectorActivity应该(或适应)你想要的。