在Android 9 Pie中激活蓝牙

时间:2019-01-13 19:32:59

标签: android bluetooth android-9.0-pie

多年来,我一直在通过以下简单代码在应用程序中激活蓝牙:

BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();
if (btAdapter.isEnabled() == false) 
   btAdapter.enable() 

但是,现在,在Android 9上,系统会向用户显示一个屏幕,显示文本“应用xxx试图启用蓝牙。是否要允许它?” (或类似的内容)。我的应用程序功能非常令人讨厌,因为它在后台自动运行,因此不需要用户迭代。没有用户交互,有没有办法在Android 9中激活蓝牙?

1 个答案:

答案 0 :(得分:1)

可以这样做,但是您需要授予特定的应用程序写入系统设置的权限。

在XDA论坛上查看我的帖子: https://forum.xda-developers.com/mate-9-pro/help/allow-to-enable-bluetooth-off-user-t3918723