我正在尝试操作可以通过NFC标签打开/关闭的闪光灯功能。
写完标签后,我尝试设置是否在broadcastReceiver上读取某些信息,应该打开/关闭闪光灯。然而,接收器从未回应过。我不知道为什么......
所以,我真正想知道的是下面的
“我的应用程序可以通过我的应用程序首先读取标记中写入的信息。”
如下所示,我尝试操作该功能。
此代码用于写入NFC标签
private void enableTagWriteMode() {
mWriteMode = true;
//IntentFilter tagDetected = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
//this.registerReceiver(Flash.class, tagDetected);
//IntentFilter[] mWriteTagFilters = new IntentFilter[] { tagDetected };
mNfcAdapter.enableForegroundDispatch(this, mNfcPendingIntent, null, null);
}
private void disableTagWriteMode() {
mWriteMode = false;
mNfcAdapter.disableForegroundDispatch(this);
}
protected void onNewIntent(Intent intent) {
// Tag writing mode
String action = intent.getAction();
System.out.println("aa: " + action);
//android.nfc.action.NDEF_DISCOVERED
if (mWriteMode) {
Tag detectedTag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
String flash = "Flash";
byte[] textBytes = flash.getBytes();
NdefRecord textRecord = new NdefRecord(NdefRecord.TNF_MIME_MEDIA,
"text/plain".getBytes(), new byte[] {}, textBytes);
NdefMessage message= new NdefMessage(new NdefRecord[] { textRecord });
boolean write = writeTag(message, detectedTag);
System.out.println(""+write);
if (write) {
Toast.makeText(this, "Success: Wrote placeid to nfc tag", Toast.LENGTH_LONG)
.show();
}
}
}
此代码,For Read NFC code
public class Flash extends BroadcastReceiver {
private boolean isLighOn = false;
private Camera camera;
@Override
public void onReceive(Context context, Intent intent) {
if ( NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) {
System.out.println("call?");
//LayoutInflater mInflater = (LayoutInflater)context.getSystemService(context.LAYOUT_INFLATER_SERVICE);
PackageManager pm = context.getPackageManager();
if (!pm.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {
Log.e("err", "Device has no camera!");
return;
}
camera = Camera.open();
final Parameters p = camera.getParameters();
if (isLighOn) {
Log.i("info", "torch is turn off!");
p.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(p);
camera.stopPreview();
isLighOn = false;
}
else {
Log.i("info", "torch is turn on!");
p.setFlashMode(Parameters.FLASH_MODE_TORCH);
camera.setParameters(p);
camera.startPreview();
isLighOn = true;
}
}
}
}
这是manifest.xml中的过滤器
<receiver android:name =".Flash">
<intent-filter android:priority="10000">
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<data android:mimeType="text/plain" />
</intent-filter>
</receiver>
答案 0 :(得分:4)
NFC发现意图仅发送到活动。您无法通过BroadcastReceiver接收它们。因此,您有两种方法可以读取标记:
如果您只想在活动位于前景时阅读标签,则可以使用前台调度系统(正如您在编写标签时所做的那样)。
如果您希望获得类似于您尝试使用BroadcastReceiver的内容,可以注册NDEF_DISOVERED意图的活动:
<activity ...>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
注意您无法使用android:priority="10000"
优先处理您的申请。如果为同一数据类型注册了多个活动,则无论优先级值如何,都将显示活动选择器。在您的情况下,数据类型text/plain
可能会与其他应用程序发生冲突,因此我建议您使用NFC论坛外部类型。使用NFC论坛外部类型,您可以创建自己的特定于应用程序的NDEF记录类型:
NdefRecord extRecord = NdefRecord.createExternal(
"yourdomain.com", // your domain name
"yourtype", // your type name
textBytes); // payload
为他们过滤:
<activity ...>
<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="/yourdomain.com:yourtype" />
</intent-filter>
</activity>