1.使用Activity Action
Intent enableIntent=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(enableIntent,1);
2.使用BluEtoothAdapter
BluetoothAdapter bluetoothAdapter=BluetoothAdapter.getDefaultAdapter(); bluetoothAdapter.enable();
区别:
1,使用Activity Action打开蓝牙会弹出一个对话框,询问是否打开蓝牙设备,如果单击“是”,会弹出“正在打开蓝牙设备...”的信息框。
使用BluetoothAdapter打开蓝牙,不会有任何提示,使用静默方式打开蓝牙设备。
2.第一种方式不需要任何权限。第二种方式需要在AndroidManifest中添加 如下权限。
<uses-permission android:name="android.permission.BLUETOOTH"/> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
时间: 2024-10-06 00:41:22