gpt4 book ai didi

android - NFC 与 Xamarin.Forms 没有任何反应

转载 作者:搜寻专家 更新时间:2023-11-01 08:27:00 35 4
gpt4 key购买 nike

第一次,我想为项目 WinPhone 和 Android 实现 NFC 跨平台 Xamarin.Forms。

我在 Android 上测试我的应用程序,但实际上没有任何反应。作为工具,我使用了我在 Android 程序 reTag 中测试过的 Visa Pay Wave 卡,扫描成功。我使用了来自这个 link 的 GitHub 的解决方案我有 0 个错误,应用程序也“有效”,但是当我将我的 Visa 卡添加到手机背面时,我什么也没得到。

我的第一个问题是:哪种协议(protocol)使用 Visa 卡? (TAG_DISCOVERED、TECH_DISCOVERED 或 NDEF_DISCOVERED)。我认为这是我的程序处于“空闲”状态的原因。

我的第二个问题是:你知道为什么我无法从程序中获取任何事件吗? (开始只是获取 UID 号..)

这是我的 AndroidManifest.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.NFC" />
<application android:label="NFCTest002.Android"></application>
<uses-feature
android:name="android.hardware.nfc"
android:required="true" />
<application>
<activity
android:name="MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc" />
</activity>
</application>
</manifest>

我的 MainActivity.cs:

using Android.App;
using Android.Content;
using Android.Content.PM;
using Android.Nfc;
using Android.OS;
using Poz1.NFCForms.Abstract;
using Poz1.NFCForms.Droid;
using System;

namespace NFCTest002.Droid
{
[Activity(Label = "NFCTest002", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
[IntentFilter(new[] { NfcAdapter.ActionTechDiscovered })]
[MetaData(NfcAdapter.ActionTechDiscovered, Resource = "@xml/nfc")]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
public NfcAdapter NFCdevice;
public NfcForms x;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);

global::Xamarin.Forms.Forms.Init(this, bundle);

NfcManager NfcManager = (NfcManager)Android.App.Application.Context.GetSystemService(Context.NfcService);
NFCdevice = NfcManager.DefaultAdapter;

Xamarin.Forms.DependencyService.Register<INfcForms, NfcForms>();
x = Xamarin.Forms.DependencyService.Get<INfcForms>() as NfcForms;

LoadApplication(new NFCTest002.App());
}
protected override void OnResume()
{
base.OnResume();
if (NFCdevice != null)
{
var intent = new Intent(this, GetType()).AddFlags(ActivityFlags.SingleTop);
NFCdevice.EnableForegroundDispatch
(
this,
PendingIntent.GetActivity(this, 0, intent, 0),
new[] { new IntentFilter(NfcAdapter.ActionTechDiscovered) },
new String[][] {new string[] {
NFCTechs.Ndef,
},
new string[] {
NFCTechs.MifareClassic,
},
}
);
}
}

protected override void OnPause()
{
base.OnPause();
NFCdevice.DisableForegroundDispatch(this);
}

protected override void OnNewIntent(Intent intent)
{
base.OnNewIntent(intent);
x.OnNewIntent(this, intent);
}
}
}

我已经将 nfc.xml 文件添加到 Resource 文件夹和 xml 文件夹,如果需要我会发布它。

内容页面与我提供的链接中 GitHub 上的相同。

最佳答案

Visa payWave 卡基于 EMV 标准。在 RF 通信协议(protocol)方面,这些卡使用 ISO/IEC 7816-4 over ISO-DEP (ISO/IEC 14443-4)。

在 Android 上,您可以结合使用 TECH_DISCOVERED Intent 过滤器和适当的过滤器 XML 文件来获取这些卡片。对于这些卡片,XML 文件需要如下所示:

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<tech-list>
<tech>android.nfc.tech.IsoDep</tech>
</tech-list>
</resources>

与上述基于 list 的 Intent 过滤器的方法类似,您可以使用以下方法启用基于前台调度的标签发现:

NFCdevice.EnableForegroundDispatch(
this,
PendingIntent.GetActivity(this, 0, intent, 0),
new[] { new IntentFilter(NfcAdapter.ActionTechDiscovered) },
new String[][] {
new string[] {
NFCTechs.IsoDep,
},
}
);

NDEF_DISCOVERED Intent 过滤器不适用于 EMV 卡,因为它们不包含任何 NDEF 结构化数据。

关于android - NFC 与 Xamarin.Forms 没有任何反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43945777/

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