在Android里,UI线程是不允许被阻塞的,因此我们要将耗时的工作放到子线程中去处理。

那么子线程耗时处理后要怎样通知UI线程呢?

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

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

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

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

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

a328b6c21a47fd9a87fac28690ac1e75.png

下面附上代码:

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:

"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">

"@+id/tvid"

android:textSize="40sp"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

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

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

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐