如何直接打开和关闭蓝牙,而无需弹出询问用户同意。 我尝试了bt Adapter.enabled(),但这对我不起作用。
答案 0 :(得分:2)
据我所知,您需要将其添加到权限xml(AndroidManifest.xml)文件中,以免用户干预。
http://www.brighthub.com/mobile/google-android/articles/103281.aspx
答案 1 :(得分:1)
String status;
if (bluetooth.isEnabled()) {
String mydeviceaddress = bluetooth.getAddress();
String mydevicename = bluetooth.getName();
status = mydevicename + ” : ” + mydeviceaddress;
}
else
{
status = “Bluetooth is not Enabled.”;
}
Toast.makeText(this, status, Toast.LENGTH_LONG).show();
现在打开或关闭你的愿望:)
答案 2 :(得分:0)
if (!mBluetoothAdapter.isEnabled()) {
//do some thing here
}else{
//do some thing here
}
答案 3 :(得分:0)
它需要android.permission.BLUETOOTH_ADMIN权限