蓝牙启用请求不起作用
Bluetooth enable request is not working
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
int REQUEST_ENABLE_BT = 1;
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
在我的 Android 设置上,提示 activity 已不幸停止。
在您的AndroidManifest.xml
中添加蓝牙权限
<uses-permission android:name="android.permission.BLUETOOTH" />
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
int REQUEST_ENABLE_BT = 1;
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
在我的 Android 设置上,提示 activity 已不幸停止。
在您的AndroidManifest.xml
中添加蓝牙权限<uses-permission android:name="android.permission.BLUETOOTH" />