Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a short question. How can I update a TextField without using an AsyncTask? In my Activity class I've got a function like this:

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);
            }
        }
    }

Which checks if device got Bluetooth, is it enabled or disabled, you hopefully got the picture. So over to my question once again. How can I dynamically change the textfield status if I turn of the bluetooth, and vice versa?

share|improve this question
Try using a Handler for updating the texts in the UI thread? – jpa Jun 26 '12 at 12:41

1 Answer

up vote 6 down vote accepted

Register BroadcastReceiver with intent action BluetoothAdapter.ACTION_STATE_CHANGED and move your text updating code into onReceive method.

Example code could be found here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.