android updates the ui example with handler ui thread and child thread communication

  • 2020-05-19 05:53:56
  • OfStack


package com.act262.sockettx;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
/**
 *  You can get it in another thread View Class of data , But you can't change or set it View Class of data 
 * 
 */
public class Main extends Activity {
    TextView result = null;
    EditText get = null;
    Button update = null;
    Handler handler;
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        setContentView(R.layout.main);
        result = (TextView) findViewById(R.id.result);
        update = (Button) findViewById(R.id.update);
        get = (EditText) findViewById(R.id.get);
        handler = new Handler() {
            public void handleMessage(Message msg) {
                if (msg.what == 1) {
                    result.setText("after update ui "
                            + msg.getData().getString("data")
                            + "  \nman thread : "
                            + Thread.currentThread().getName());
                }
            }
        };
        result.setText("before update ui  main thread : "
                + Thread.currentThread().toString());
        update.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                new MyThread("my thread").start();
            }
        });
    }
    class MyThread extends Thread {
        public MyThread(String name) {
            super(name);
        }
        @Override
        public void run() {
            //  Send a message without data 
            // handler.sendEmptyMessage(1);
            //  Send a message with the data 
            Message msg = new Message();
            Bundle data = new Bundle();
            data.putString("data", get.getText().toString() + " my thread:  "
                    + Thread.currentThread().getName());
            msg.setData(data);
            msg.what = 1;
            handler.sendMessage(msg);
        }
    }
}


Related articles: