小米13有蓝牙吗
// 获取蓝牙适配器
BluetoothAdapter
bluetoothAdapter
=
BluetoothAdapter
.
getDefaultAdapter
;">)
;
// 检查蓝牙是否可用
if
;">==
null
)
{
// 设备不支持蓝牙
return
;
}
if
;">!
bluetoothAdapter
.
isEnabled
;">)
)
{
// 如果蓝牙未启用,则请求启用
Intent
enableBtIntent
=
new
Intent
;">BluetoothAdapter
.
ACTION_REQUEST_ENABLE
)
;
startActivityForResult
;">,
REQUEST_ENABLE_BT
)
;
}
// 搜索蓝牙设备
bluetoothAdapter
.
startDiscovery
;">)
;
以上代码获取默认的蓝牙适配器,并启动设备的蓝牙。然后,它开始搜索蓝牙设备。要使用蓝牙API进行更多操作,请查看~~。
版权申明:文章由用户发布,不代表本网站立场,如果侵权请联系我们删除。