为了账号安全,请及时绑定邮箱和手机立即绑定

无法使用Android BT API方法

无法使用Android BT API方法

动漫人物 2023-11-10 15:52:00
我正在开发一个需要 BT 连接的 Android 应用程序。阅读 Android 开发者页面后,我们给出的方法isEnabled()不起作用。错误是cannot resolve symbol isEnabled。导入的库是android.bluetooth.BluetoothAdapter. 在清单文件中,按照Android页面的说明,我还插入了蓝牙、BT管理和精细位置的权限。代码:public class MainActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);}BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();if (bluetoothAdapter == null) {    Log.i("Fallo","Dispositivo sin bluetooth");}if (!bluetoothAdapter.isEnabled()) {    Intent enableBtIntent = new     Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);        startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);    }}
查看完整描述

1 回答

?
噜噜哒

TA贡献1784条经验 获得超7个赞

您正在 onCreate 方法之外创建 BluetoothAdapter 对象。将所有内容放在 onCreate 大括号内。



查看完整回答
反对 回复 2023-11-10
  • 1 回答
  • 0 关注
  • 136 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信