【发布时间】: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