gpt4 book ai didi

android - 如果用户拒绝打开蓝牙,则退出Android应用程序

转载 作者:行者123 更新时间:2023-12-02 12:40:10 25 4
gpt4 key购买 nike

我有一个Kotlin应用程序,它可以检查蓝牙适配器是打开还是关闭。如果关闭了蓝牙适配器,则该应用程序请求用户允许设备上的蓝牙。
问题是:当用户按下“允许”按钮时,onActivityResult回调打印出允许使用蓝牙。但是,如果用户按下“拒绝”按钮,则onActivityResult回调不输出任何内容。看来onActivityCallback只能对用户允许蓝牙或发生错误使用react。
我需要实现以下功能:如果用户拒绝蓝牙请求(按“拒绝”按钮),则应用程序需要退出。有什么办法可以实现吗?
这是我创建蓝牙适配器实例并请求用户允许蓝牙使用的方式:

// Create bluetooth adapter instance
val bluetoothAdapter: BluetoothAdapter? by lazy(LazyThreadSafetyMode.NONE) {
val bluetoothManager = getSystemService(Context.BLUETOOTH_SERVICE) as BluetoothManager
bluetoothManager.adapter
}

// Check if bluetooth is turned on, otherwise request user to turn it on
var bluetooth_requested = false
while (bluetoothAdapter != null && bluetoothAdapter!!.isDisabled) {
if (!bluetooth_requested) {
SetupBLE(bluetoothAdapter)
bluetooth_requested = true
}
}

该功能要求用户允许蓝牙:
fun MainActivity.SetupBLE(bluetoothAdapter: BluetoothAdapter?) {
val blueToothIntent = Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE)
ActivityCompat.startActivityForResult( this, blueToothIntent, REQUEST_ENABLE_BT, null )
}
这是我在 onActivityResult中覆盖 MainActivity功能的方法
// Overrided onActivityResult callback
public override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
if (requestCode == REQUEST_ENABLE_BT) {
if (resultCode == RESULT_OK) {
Log.d("onActivityResult", "The result is Allow!!!")
} else {
Log.d("onActivityResult", "The result is Deny!!!")
}
}
}

最佳答案

只是在其他地方调用finish()

关于android - 如果用户拒绝打开蓝牙,则退出Android应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62952023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com