发布于 2016-02-26 22:08:05 | 176 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


这篇文章主要介绍了android使用handler ui线程和子线程通讯更新ui的方法,大家参考使用吧


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;

/**
 * 可以在其他线程中获取View类的数据,但是不能修改或者设置View类的数据
 *
 */
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() {
            // 发送不带数据的消息
            // handler.sendEmptyMessage(1);

            // 发送附带数据的消息
            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);
        }
    }
}



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务