蓝牙启用请求无效

时间:2015-04-17 06:22:36

标签: android android-intent android-bluetooth

Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
int REQUEST_ENABLE_BT = 1;
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);

在我的Android设置上,它提示不幸停止活动。

1 个答案:

答案 0 :(得分:2)

在AndroidManifest.xml中添加蓝牙权限

<uses-permission android:name="android.permission.BLUETOOTH" />