兔子--在程序中打开手机的蓝牙设备的方式
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"/>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。