【问题标题】:NFC with Xamarin.Forms nothing happensNFC 与 Xamarin.Forms 没有任何反应
【发布时间】:2017-10-12 05:57:51
【问题描述】:

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

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

我的第一个问题是:哪种协议使用 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 上的相同。

【问题讨论】:

  • 您是否尝试过使用可以读写的标准 NFC 标签。这可能会缩小 Visa 卡使用的连接范围?
  • 还有这个网站patrickvankleef.com/2017/01/08/xamarin-near-field-communication最近有一个Android平台上NFC代码的例子
  • @AaronThompson 谢谢,我会尝试 Android 平台,但我需要 xamarin.forms。

标签: android xamarin.android tags xamarin.forms nfc


【解决方案1】:

Visa payWave 卡基于 EMV 标准。在射频通信协议方面,这些卡使用 ISO/IEC 7816-4 而不是 ISO-DEP (ISO/IEC 14443-4)。

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

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

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

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

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

【讨论】:

  • 这应该被标记为正确答案。我的回答具有误导性,因为我知道 op 想要模拟卡片,抱歉。
猜你喜欢
  • 2012-06-05
  • 1970-01-01
  • 2015-01-23
  • 2017-06-11
  • 2014-05-04
  • 2019-01-16
  • 2013-04-05
  • 1970-01-01
相关资源
最近更新 更多