Как отключить Bluetooth на Android 13+?Android

Форум для тех, кто программирует под Android
Anonymous
Как отключить Bluetooth на Android 13+?

Сообщение Anonymous »

Код: Выделить всё

 //Above android 12
Button(onClick = {
val intent = Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE)
activityResultLauncher.launch(intent)
}) {
Text(text = "Enable")
}
Этот код помогает мне включить Bluetooth в Android 13+, но я не знаю, как его отключить
Я видел метод REQUEST_DISABLE и я попробовал это, но это частный метод, поэтому он не работает

Код: Выделить всё

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


Подробнее здесь: https://stackoverflow.com/questions/788 ... android-13

Вернуться в «Android»