- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 3 个不同的带有 NFC
的设备
。其中 2 个设备上的 NfcAdapter.getDefaultAdapter(this)
返回应有的结果,但在第三个设备上返回null
。第三台设备上安装了一个应用程序(不是我的),该应用程序可以与 NFC 卡
配合使用。第三台设备是SUNMI P1N-G
。有什么想法吗?
主要 Activity :
package com.test.nfctest;
import androidx.appcompat.app.AppCompatActivity;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private NfcAdapter nfcAdapter;
TextView text1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text1 = (TextView) findViewById(R.id.text1);
nfcAdapter = NfcAdapter.getDefaultAdapter(this);
if (nfcAdapter==null) {
text1.setText("no nfc");
} else {
text1.setText("NFC");
}
}
}
Android list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.nfctest">
<uses-permission android:name="android.permission.NFC"/>
<uses-feature android:name="android.hardware.nfc" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
最佳答案
获得空适配器的原因有多种。 http://androidxref.com/6.0.1_r10/xref/frameworks/base/core/java/android/nfc/NfcAdapter.java#494
根据 NfcManager 中的评论,有两种方法获取 NFC 适配器:
NfcManager 管理器 = (NfcManager) getSystemService(Context.NFC_SERVICE);
NfcAdapter 适配器 = manager.getDefaultAdapter();
您可以尝试上述替代方法#1。
关于java - NfcAdapter.getDefaultAdapter 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57901595/
我在通过 Dagger 模块返回可为空的 NfcAdapter 时遇到问题。在这里: @Provides @Singleton @Nullable public NfcAdapter
我有 3 个不同的带有 NFC 的设备。其中 2 个设备上的 NfcAdapter.getDefaultAdapter(this) 返回应有的结果,但在第三个设备上返回null。第三台设备上安装了一个
我正在尝试使用 IsoDep 和 NfcAdapter 类将 APDU 发送到标签(智能卡),我有两个问题: 1) 有没有办法获得 Disconnected Intent (例如,当卡片被拿走时)?我
我正在尝试在模拟器 API 10 (Android 2.3. 3). 当我调用 NfcAdapter.getDefaultAdapter(this) 时,我得到 null。为什么会这样? 代码: pu
我在主 Activity 的 onCreate() 方法中有以下代码: super.mAdapter.enableReaderMode(this, new NfcAdapter.ReaderCallb
我的应用程序在后台和前台使用 NFC 读取。对于用户信息,我在我的 Activity 中使用 CountDownTimer(120 * 1000, 5 * 1000) 和方法 onTick(long
我正在尝试使用 Robolectric 来测试 NFC 助手类。简化,我正在做这样的事情: Activity activity = Robolectric.buildActivity(Activity
在 Android 10 中,我注意到我从操作系统收到一条 Toast 消息,说明“此 NFC 标签不支持应用程序”或“此 NFC 标签不支持应用程序”(取决于设备): 奇怪的是,我在 enableR
我是一名优秀的程序员,十分优秀!