gpt4 book ai didi

android - 不使用 AsyncTask 动态更新 TextField

转载 作者:行者123 更新时间:2023-11-29 14:53:45 25 4
gpt4 key购买 nike

我有一个简短的问题。如何在不使用 AsyncTask 的情况下更新 TextField?在我的 Activity 类中,我有一个这样的函数:

private void CheckBlueToothState(){

if (bluetoothAdapter == null){
status.setText("Bluetooth NOT support.");
}else{
if (bluetoothAdapter.isEnabled()){
if(bluetoothAdapter.isDiscovering()){
status.setText("Bluetooth is currently in device discovery process.");
}else{
status.setText("Bluetooth is Enabled");
search.setEnabled(true);
}
}else{
status.setText("Bluetooth is NOT Enabled");
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}
}
}

它检查设备是否有蓝牙,它是启用还是禁用,你希望得到图片。再次回答我的问题。如果我关闭蓝牙,如何动态更改文本字段 status ,反之亦然?

最佳答案

注册BroadcastReceiver使用 Intent 操作 BluetoothAdapter.ACTION_STATE_CHANGED 并将您的文本更新代码移动到 onReceive 方法中。

可以找到示例代码here .

关于android - 不使用 AsyncTask 动态更新 TextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11207529/

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