gpt4 book ai didi

java - NfcAdapter.getDefaultAdapter 返回 null

转载 作者:行者123 更新时间:2023-12-02 00:45:34 34 4
gpt4 key购买 nike

我有 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 适配器:

  1. 使用 {@link android.content.Context#getSystemService(java.lang.String)} 和 {@link Context#NFC_SERVICE} 创建一个 {@link NfcManager},然后调用 {@link #getDefaultAdapter} 获取{@link NfcAdapter}。
    NfcManager 管理器 = (NfcManager) getSystemService(Context.NFC_SERVICE);
    NfcAdapter 适配器 = manager.getDefaultAdapter();
  2. 您只需调用静态助手 {@link NfcAdapter#getDefaultAdapter(android.content.Context)}即可。

您可以尝试上述替代方法#1。

关于java - NfcAdapter.getDefaultAdapter 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57901595/

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