码迷,mamicode.com
首页 > 移动开发 > 详细

Android异步机制一:使用Thread+Handler实现非UI线程更新UI界面

时间:2015-04-25 13:43:58      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:thread   handler   非ui线程   更新ui界面   

概述:每个Android应用程序都运行在一个dalvik虚拟机进程中,进程开始的时候会启动一个主线程(MainThread),主线程负责处理和ui相关的事件,因此主线程通常又叫UI线程。而由于Android采用UI单线程模型,所以只能在主线程中对UI元素进行操作。如果在非UI线程直接对UI进行了操作,则会报错:

CalledFromWrongThreadException only the original thread that created a view hierarchy can touch its views

Android为我们提供了消息循环的机制,我们可以利用这个机制来实现线程间的通信。那么,我们就可以在非UI线程发送消息到UI线程,最终让Ui线程来进行ui的操作。

对于运算量较大的操作和IO操作,我们需要新开线程来处理这些繁重的工作,以免阻塞ui线程。

例子:下面我们以获取CSDN logo的例子,演示如何使用Thread+Handler的方式实现在非UI线程发送消息通知UI线程更新界面。

ThradHandlerActivity.java:

package com.lc.androidasyntask;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
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.ImageView;
import android.widget.Toast;

public class ThreadHandlerActivity extends Activity {

    private static final int MSG_SUCCESS = 0;// 获取图片成功的标识
    private static final int MSG_FAILURE = 1;// 获取图片失败的标识

    private ImageView mImageView;
    private Button mButton;

    private Thread mThread;

    private Handler mHandler = new Handler() {
        public void handleMessage(Message msg) {// 此方法在ui线程运行
            switch (msg.what) {
            case MSG_SUCCESS:
                mImageView.setImageBitmap((Bitmap) msg.obj);// imageview显示从网络获取到的logo
                Toast.makeText(getApplication(),
                        getApplication().getString(R.string.get_pic_success),
                        Toast.LENGTH_LONG).show();
                break;

            case MSG_FAILURE:
                Toast.makeText(getApplication(),
                        getApplication().getString(R.string.get_pic_failure),
                        Toast.LENGTH_LONG).show();
                break;
            }
        }
    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mImageView = (ImageView) findViewById(R.id.imageView);// 显示图片的ImageView
        mButton = (Button) findViewById(R.id.button);
        mButton.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {
                if (mThread == null) {
                    mThread = new Thread(runnable);
                    mThread.start();// 线程启动
                } else {
                    Toast.makeText(
                            getApplication(),
                            getApplication().getString(R.string.thread_started),
                            Toast.LENGTH_LONG).show();
                }
            }
        });
    }

    Runnable runnable = new Runnable() {

        public void run() {// run()在新的线程中运行
            HttpClient httpClient = new DefaultHttpClient();
            HttpGet httpGet = new HttpGet(
                    "http://csdnimg.cn/www/images/csdnindex_logo.gif");// 获取csdn的logo
            final Bitmap bitmap;
            try {
                HttpResponse httpResponse = httpClient.execute(httpGet);
                bitmap = BitmapFactory.decodeStream(httpResponse.getEntity().getContent());
            } catch (Exception e) {
                mHandler.obtainMessage(MSG_FAILURE).sendToTarget();// 获取图片失败
                return;
            }
            // 获取图片成功,向ui线程发送MSG_SUCCESS标识和bitmap对象
            mHandler.obtainMessage(MSG_SUCCESS, bitmap).sendToTarget();

            // mImageView.setImageBitmap(bm); //出错!不能在非ui线程操作ui元素

            // mImageView.post(new Runnable() {//另外一种更简洁的发送消息给ui线程的方法。
            //
            // @Override
            // public void run() {//run()方法会在ui线程执行
            // mImageView.setImageBitmap(bm);
            // }
            // });
        }
    };

}

main.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="获取图片" >
    </Button>

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

strings.xml文件:

    <string name="thread_started">Thread started</string>
    <string name="get_pic_success">Get pic success</string>
    <string name="get_pic_failure">Get pic failure</string>

在清单文件中加入访问网络权限:

<!-- 不要忘记设置网络访问权限 -->
    <uses-permission android:name="android.permission.INTERNET" />

然后将”com.lc.androidasyntask.ThreadHandlerActivity” 设置为启动页面

结果如下:
技术分享

案例中我们使用Handler和Thread,在线程执行的结构中通知handler,在handler中进行 图片的设置。

Android异步机制一:使用Thread+Handler实现非UI线程更新UI界面

标签:thread   handler   非ui线程   更新ui界面   

原文地址:http://blog.csdn.net/xlgen157387/article/details/45269389

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!