如何在 Android 13+ 中禁用蓝牙?

问题描述 投票:0回答:1
 //Above android 12
            Button(onClick = {
                val intent = Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE)
                activityResultLauncher.launch(intent)
            }) {
                Text(text = "Enable")
            }

此代码帮助我在 Android 13+ 中启用蓝牙,但我不知道如何禁用它

我看到了 REQUEST_DISABLE 方法,我尝试了这个,但这是一个私有方法,所以它不起作用

Button(onClick = { val intent = Intent(android.bluetooth.adapter.action.REQUEST_DISABLE) activityResultLauncher.launch(intent) }) { Text(text = "disable") }

android kotlin bluetooth android-jetpack-compose
1个回答
0
投票
val bluetoothAdapter: BluetoothAdapter? = BluetoothAdapter.getDefaultAdapter()
bluetoothAdapter.disable()
© www.soinside.com 2019 - 2024. All rights reserved.