Android:子线程向UI主线程发送消息

在Android里,UI线程是不允许被阻塞的,因此我们要将耗时的工作放到子线程中去处理。
那么子线程耗时处理后要怎样通知UI线程呢?

我们可以在UI主线程中创建一个handler对象,然后通过重写其handleMessage(Message msg)的方法,该方法会接收到子线程中的handler对象的sendMessage((Message msg)发回来的消息。这样一发一收就完成工作;

而关于主线程向子线程发送消息的内容可以看我的上一篇博客,其中讲到了Looper类及其两个重要方法和实现原理。

在Android中当UI主线程本身已实现了Looper的功能,所以不用我们操心,所以子线程向主线程发送消息是非常简单的;

下面写个例子,子线程每秒钟会向UI主线程发送一个数字,UI主线程会将该数字显示在自己的TextView控件上。

好那么先来看一下运行截图吧:

技术分享

下面附上代码:

MainActivity.java:

package activity.wyc.com.threaddemo;

import android.os.Handler;
import android.os.Message;
import android.os.SystemClock;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;


public class MainActivity extends ActionBarActivity {

    private TextView tvObj;

    private Handler handler;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        tvObj = (TextView) findViewById(R.id.tvid);

        handler = new Handler() {
            @Override
            public void handleMessage(Message msg) {
                super.handleMessage(msg);

                tvObj.setText(String.valueOf(msg.arg1));

            }
        };

        new Thread(new Runnable() {
            @Override
            public void run() {
                int num = 0;

                while (true) {
                    Message message = Message.obtain();
                    message.arg1 = num;

                    handler.sendMessage(message);

                    SystemClock.sleep(1000);
                    num = ++num;
                }
            }
        }).start();

    }


}

activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:gravity="center_horizontal"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/tvid"
        android:textSize="40sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

以下是源码(百度云盘,Android studio编写):

http://pan.baidu.com/s/1kT9oKbP

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。