[AndroidThread&Handler]Thread3-案例2

使用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线程更新界面。

UIupdateActivity.java

 public class UIupdateActivity extends Activity{ private static final int MSG_SUCCESS = 0;//获取图片成功的标识 private static final int MSG_FAILURE = 1;//获取图片失败的标识 protected static final String TAG = "Raylee "; protected static final String TITLE = "UIupdate through workerThread"; private ImageView mImageView; private Button mButton; private Thread mThread; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.example2); mImageView= (ImageView) findViewById(R.id.imageView);//显示图片的ImageView mButton = (Button) findViewById(R.id.button); mButton.setOnClickListener(new OnClickListener() { @Override 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(); } } }); } @SuppressLint("HandlerLeak") private Handler mHandler = new Handler() { public void handleMessage (Message msg) {//此方法在ui线程运行 switch(msg.what) { case MSG_SUCCESS: mImageView.setImageBitmap((Bitmap) msg.obj);//imageview显示从网络获取到的logo Log.i(TAG, "Handler Success ---> " + msg.obj); Toast.makeText(getApplication(), getApplication() .getString(R.string.get_pic_success),Toast.LENGTH_LONG).show(); break; case MSG_FAILURE: Log.i(TAG, "Handler Failure!"); Toast.makeText(getApplication(), getApplication(). getString(R.string.get_pic_failure),Toast.LENGTH_LONG).show(); break; } } }; Runnable runnable = new Runnable() { @Override public void run() {//run()在新的线程中运行 HttpClient hc = new DefaultHttpClient(); HttpGet hg = new HttpGet("http://csdnimg.cn/www/images/csdnindex_logo.gif");//获取csdn的logo Log.i(TAG + TITLE, "hg Not null ---> " + hg); Bitmap bm = null; try { HttpResponse hr = hc.execute(hg); bm = BitmapFactory.decodeStream(hr.getEntity().getContent()); Log.i(TAG + TITLE, "bm Not null ---> " + bm); } catch (Exception e) { mHandler.obtainMessage(MSG_FAILURE).sendToTarget();//获取图片失败 Log.i(TAG + TITLE, "Failure!"); return; } Log.i(TAG + TITLE, "Success ---> " + bm); mHandler.obtainMessage(MSG_SUCCESS,bm).sendToTarget();//获取图片成功,向ui线程发送MSG_SUCCESS标识和bitmap对象 } }; }

example2.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="match_parent" android:orientation="vertical" > <Button android:id="@+id/button" android:text="@string/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="30dp" /> <ImageView android:id="@+id/imageView" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_margin="100dp" android:layout_width="wrap_content" android:contentDescription="@android:string/untitled" /> </LinearLayout>

AndroidManifest.xml

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="home.lee.example2UIupdate" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" /> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:name=".UIupdateActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> 

运行结果

为了不阻塞ui线程,我们使用mThread从网络获取了CSDN的LOGO

,并用bitmap对象存储了这个Logo的像素信息。

此时,如果在这个线程的run()方法中调用

 mImageView.setImageBitmap(bm)

会出现:CalledFromWrongThreadException:only the original thread that created a
view hierarchy can touch its
views。原因是run()方法是在新开的线程中执行的,我们上面提到不能直接在非ui线程中操作ui元素。

非UI线程发送消息到UI线程分为两个步骤

一、发送消息到UI线程的消息队列

通过使用Handler的

 Message obtainMessage(int what,Object object) 

构造一个Message对象,这个对象存储了是否成功获取图片的标识what和bitmap对象,然后通过message.sendToTarget()方法把这条message放到消息队列中去。

二、处理发送到UI线程的消息

在ui线程中,我们覆盖了handler的

 public void handleMessage (Message msg)

这个方法是处理分发给ui线程的消息,判断msg.what的值可以知道mThread是否成功获取图片,如果图片成功获取,那么可以通过msg.obj获取到这个对象。最后,我们通过

 mImageView.setImageBitmap((Bitmap) msg.obj); 

设置ImageView的bitmap对象,完成UI的更新。补充:

事实上,我们还可以调用View的post方法来更新ui

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

这种方法会把Runnable对象发送到消息队列,ui线程接收到消息后会执行这个runnable对象。从例子中我们可以看到handler既有发送消息和处理消息的作用,会误以为handler实现了消息循环和消息分发,其实Android为了让我们的代码看起来更加简洁,与UI线程的交互只需要使用在UI线程创建的handler对象就可以了。

http://blog.csdn.net/mylzc/article/details/6736988

[AndroidThread&Handler]Thread3-案例2,布布扣,bubuko.com

时间: 2024-10-05 04:19:16

[AndroidThread&Handler]Thread3-案例2的相关文章

[AndroidThread&amp;Handler]Thread1-实现方法

扩展Thread的示例代码: public class CommonTestActivity extends Activity {     /** Called when the activity is first created. */     @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContent

[AndroidThread&amp;Handler]Thread2-案例1

Android消息队列模型Thread,Handler,Looper,Massage Queue Android系统的消息队列和消息循环都是针对具体线程的,一个线程可以存在(当然也可以不存在)一个消息队列(Message Queue)和一个消息循环(Looper).Android中除了UI线程(主线程),创建的工作线程默认是没有消息循环和消息队列的.如果想让该线程具有消息队列和消息循环,并具有消息处理机制,就需要在线程中首先调用Looper.prepare()来创建消息队列,然后调用Looper

Android----Thread+Handler 线程 消息循环(转载)

近来找了一些关于android线程间通信的资料,整理学习了一下,并制作了一个简单的例子. andriod提供了 Handler 和 Looper 来满足线程间的通信.例如一个子线程从网络上下载了一副图片,当它下载完成后会发送消息给主线程,这个消息是通过绑定在主线程的Handler来传递的. 在Android,这里的线程分为有消息循环的线程和没有消息循环的线程,有消息循环的线程一般都会有一个Looper,这个事android的新 概念.我们的主线程(UI线程)就是一个消息循环的线程.针对这种消息循

Android的Handler深入解析

1.概述 前面写过一篇文章<Android中的消息机制>简单分析了异步消息机制,本文将深入解读Handler的原理. 2.基本概念 单线程模型中的Message.Handler.Message Queue.Looper之间的关系: Handler获取当前线程的Looper对象,Looper用来从存放Message的MessageQueue中取出Message,再由Handler进行Message的分发和处理. (1)Message Queue(消息队列) 用来存放通过Handler发布的消息,

Android的Handler机制

Handler机制的原理 Android 的 Handler 机制(也有人叫消息机制)目的是为了跨线程通信,也就是多线程通信.之所以需 要跨线程通信是因为在 Android 中主线程通常只负责 UI 的创建和修改,子线程负责网络访问和耗时操作, 因此,主线程和子线程需要经常配合使用才能完成整个 Android 功能. Handler 机制可以近似用图 1 展示.MainThread 代表主线程,newThread 代表子线程. MainThread 是 Android 系统创建并维护的,创建的时

Android Handler消息机制深入浅出

作为Android开发人员,Handler这个类应该是再熟悉不过了,因为几乎任何App的开发,都会使用到Handler这个类,有些同学可能就要说了,我完全可以使用AsyncTask代替它,这个确实是可以的,但是其实AsyncTask也是通过Handler实现的,具体的大家可以去看看源码就行了,Handler的主要功能就是实现子线程和主线程的通信,例如在子线程中执行一些耗时操作,操作完成之后通知主线程跟新UI(因为Android是不允许在子线程中跟新UI的). 下面就使用一个简单的例子开始这篇文章

Android ANR解决案例(内部资料)

当发生ANR后,首先需要查看log信息以及trace文件(系统都会在/data/anr/目录下生成trace文件)分析出ANR原因.通过以下分析并不能解决所有碰到的ANR,但程序自身原因导致的ANR问题基本都能找到原因. log信息分析 04-01 13:12:11.572 I/InputDispatcher( 220): Application is not responding:Window{2b263310com.android.email/com.android.email.activi

Android ANR分析(1)

转自:http://blog.csdn.net/itachi85/article/details/6918761 一:什么是ANR ANR:Application Not Responding,即应用无响应 二:ANR的类型 ANR一般有三种类型: 1:KeyDispatchTimeout(5 seconds) --主要类型 按键或触摸事件在特定时间内无响应 2:BroadcastTimeout(10 seconds) BroadcastReceiver在特定时间内无法处理完成 3:Servic

【Android】[转] ANR的分析和问题处理

一:什么是ANR ANR:Application Not Responding,即应用无响应 二:ANR的类型 ANR一般有三种类型: 1. KeyDispatchTimeout(5 seconds) --主要类型按键或触摸事件在特定时间内无响应 2. BroadcastTimeout(10 seconds) --BroadcastReceiver在特定时间内无法处理完成 3. ServiceTimeout(20 seconds) --小概率类型 Service在特定的时间内无法处理完成 三:K