gpt4 book ai didi

react-native - React Native - 检查蓝牙是否打开,如果没有提醒用户?

转载 作者:行者123 更新时间:2023-12-04 05:11:08 29 4
gpt4 key购买 nike

有没有办法检查蓝牙是否打开,如果没有,然后提醒用户?谢谢!

最佳答案

尝试这个:

安装:npm install react-native-bluetooth-status --save
链接此插件:react-native link react-native-bluetooth-status
进口:import { BluetoothStatus } from 'react-native-bluetooth-status';
检查蓝牙开启或关闭代码:

BluetoothStatus.state() 是 return boolean 。如果返回 true 蓝牙是 开启 如果返回 false 蓝牙是 关闭

componentDidMount() 
{
this.checkInitialBluetoothState();
}

async checkInitialBluetoothState()
{
const isEnabled = await BluetoothStatus.state();
console.log("check bluetooth on or off", isEnabled);
if(isEnabled == true){
Alert.alert(
'Bluethooth',
'Bluetooth is turn on'
);
} else{
Alert.alert(
'Bluethooth',
'Bluetooth is turn off'
);
}
}

react-native bluetooth status

关于react-native - React Native - 检查蓝牙是否打开,如果没有提醒用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45329483/

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