0
我使用連接了ACR122U NFC閱讀器的VirtualBox下運行的Android 4.4。Android 4.4。在VirtualBox下無法訪問ACR122U閱讀器
我添加幾行的體現:
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
和:
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
,並嘗試通過
nfcAdapter = NfcAdapter.getDefaultAdapter(this);
if(nfcAdapter == null) {
Toast.makeText(this, "NFC NOT supported on this devices!", Toast.LENGTH_LONG).show();
檢查NFC閱讀器,但收到消息NFC是不是支持的。我在哪裏做錯了?
可以肯定的是,您將NFC讀卡器插入PC並希望仿真器將其用作Android NFC讀卡器? – LaurentY