我想通过点击button3来打开和关闭手机蓝牙,箭头所指部分应该怎么写啊?跪求大神!!!
1 回答
已采纳
星箜下
TA贡献34条经验 获得超10个赞
查询蓝牙状态: bluetoothManager.getAdapter().isEnabled 需要BLUETOOTH权限。
改变蓝牙状态:
bluetoothManager.getAdapter().disable(); bluetoothManager.getAdapter().enable();
然而这两个方法不知道能不能调用成功。因为GOOGLE不想你不经用户同意私自设置他的手机,这样的设计也是为安全考虑吧。 需要BLUETOOTH_ADMIN权限。
贴上API的原文:Bluetooth should never be disabled without direct user consent. The disable() method is provided only for applications that include a user interface for changing system settings, such as a "power manager" app.
添加回答
举报
0/150
提交
取消