Android & Kotlin・Bluetooth をオンにする


前言

この操作をする前に Bluetooth 権限を取得する必要がある。

https://blog.icysamon.jp/2024/07/30/android-kotlin%e3%83%bb%e3%82%a2%e3%83%97%e3%83%aa%e3%81%ae%e6%a8%a9%e9%99%90%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8b/

startForResult ランチャーを作る

private val startForResult = registerForActivityResult(
    ActivityResultContracts.StartActivityForResult()
) { result ->
    if (result.resultCode == Activity.RESULT_OK) {
        val intent: Intent? = result.data
        Toast.makeText(this, "RESULT_OK", Toast.LENGTH_LONG).show()
        // Handle the Intent
    }
}

Bluetooth の初期化

private fun bluetoothInit() {
    // bluetooth init
    val bluetoothManager: BluetoothManager = getSystemService(BluetoothManager::class.java)
    val bluetoothAdapter: BluetoothAdapter? = bluetoothManager.adapter


    // check bluetoothAdapter
    if (bluetoothAdapter == null) {
        // Device doesn't support Bluetooth
        Toast.makeText(this, "Device doesn't support Bluetooth.", Toast.LENGTH_LONG).show()
    }

    // get bluetooth
    if (bluetoothAdapter?.isEnabled == false) {
        Toast.makeText(this, "bluetoothAdapter is not enable", Toast.LENGTH_LONG).show()

        // Bluetooth を有効する
        val intent = Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE)
        startForResult.launch(intent)
    }
}