标签:蓝牙 打开蓝牙 android程序中打开蓝牙设备 bluetoothadapter
1.使用Activity Action
Intent enableIntent=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(enableIntent,1);
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"/>
标签:蓝牙 打开蓝牙 android程序中打开蓝牙设备 bluetoothadapter
原文地址:http://blog.csdn.net/u013425527/article/details/41927591