Android中子线程和UI线程通信详解
Android中子线程和UI线程之间通信的详细解释
1.在多线程编程这块,我们经常要使用Handler,Thread和Runnable这三个类,那么他们之间的关系你是否弄清楚了呢?下面详解一下。
2.首先在开发Android应用时必须遵守单线程模型的原则:
AndroidUI操作并不是线程安全的并且这些操作必须在UI线程中执行。
3.Handler:
(1).概念:
Handler是沟通Activity与Thread/runnable的桥梁。而Handler是运行在主UI线程中的,它与子线程可以通过Message对象来传递数据。
(2).使用:
A:Handler是运行在UI线程中,主要接收子线程发送的数据信息,并用此数据配合主线程更新UI,用来跟UI主线程交互用。比如可以用handler发送一个message,然后在handler的线程中来接收、处理该消息。
B:消息的处理者。通过Handler对象我们可以封装Message对象,然后通过sendMessage(msg)把Message对象添加到MessageQueue中;当MessageQueue循环到该Message时,就会调用该Message对象对应的handler对象的handleMessage()方法对其进行处理。
C:Handler可以分发Runnable对象,也可以分发Message对象。
4.Message:
消息对象,顾名思义就是记录消息信息的类。也就是说是信息的载体,存放信息内容。这个类有几个比较重要的字段:
(1).arg1和arg2:我们可以使用两个字段用来存放我们需要传递的整型值,在Service中,我们可以用来存放Service的ID。
(2).obj:该字段是Object类型,我们可以让该字段传递某个对象到消息的接受者中。
(3).what:这个字段可以说是消息的标志,判断是接收了哪个消息。在消息处理中,我们可以根据这个字段的不同的值进行不同的处理,类似于我们在处理Button事件时,通过switch(v.getId())判断是点击了哪个按钮。
Android推荐通过Message.obtain()或者Handler.obtainMessage()获取Message对象。这并不一定是直接创建一个新的实例,而是先从消息池中看有没有可用的Message实例,存在则直接取出并返回这个实例。反之如果消息池中没有可用的Message实例,则根据给定的参数new一个新Message对象。通过分析源码可得知,Android系统默认情况下在消息池中实例化10个Message对象。
5.源码展示:
(1).activity_main.xml布局文件:
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="自定义Thread继承Thread"/> <Button android:id="@+id/btn2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="自定义Runnable实现Runnable"/> <Button android:id="@+id/btn3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="定时更新UI界面,Handler分发Runnable对象"/> <Button android:id="@+id/btn4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="定时更新UI界面,Handler分发Message对象"/> <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="0"/> </LinearLayout>
(2).MainActivity.java
packagecom.chengdong.su.threaddemo; importcom.chengdong.su.threaddemo.util.MyRunnable; importcom.chengdong.su.threaddemo.util.MyThread; importandroid.R.integer; importandroid.app.Activity; importandroid.os.Bundle; importandroid.os.Handler; importandroid.os.Message; importandroid.util.Log; importandroid.view.View; importandroid.view.View.OnClickListener; importandroid.widget.Button; importandroid.widget.TextView; publicclassMainActivityextendsActivityimplementsOnClickListener{ /**TAG*/ privatefinalStringTAG=getClass().getSimpleName(); /**theobjectofthebutton*/ privateButtonmButton; /**theobjectofthebutton*/ privateButtonmButton2; /**theobjectofthebutton*/ privateButtonmButton3; /**theobjectofthebutton*/ privateButtonmButton4; /**theobjectoftheTextView*/ privateTextViewmTextView; /**计数*/ privateintmCount=0; /**标志*/ privateintMESSAGE_FLAG=1; /** *Handler分发Runnable对象的方式 */ privateHandlermHandler=newHandler(); Runnablerunnable=newRunnable(){ @Override publicvoidrun(){ mCount++; mHandler.postDelayed(runnable,1000); mTextView.setText(mCount+""); } }; /*** *Handler分发Message对象的方式 */ HandlermHandler2=newHandler(){ publicvoidhandleMessage(android.os.Messagemsg){ if(msg.what==1){ mTextView.setText("Handler分发Message对象的方式"); } } }; @Override protectedvoidonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } /** *初始化组件对象 */ privatevoidinitView(){ mButton=(Button)findViewById(R.id.btn); mButton2=(Button)findViewById(R.id.btn2); mButton3=(Button)findViewById(R.id.btn3); mButton4=(Button)findViewById(R.id.btn4); mButton.setOnClickListener(this); mButton2.setOnClickListener(this); mButton3.setOnClickListener(this); mButton4.setOnClickListener(this); mTextView=(TextView)findViewById(R.id.tv); } @Override publicvoidonClick(Viewv){ switch(v.getId()){ caseR.id.btn:{ //方法一:继承的方式:自定义Thread继承Thread,开启一个新的线程 newMyThread().start(); break; } caseR.id.btn2:{ //方法二:实现的方式:implementRunnable newThread(newMyRunnable()).start(); break; } //方法三:handler分发Runnable对象:定时更新UI界面提交计划任务马上执行 caseR.id.btn3:{ //Handler分发Runnable对象 mHandler.post(runnable); break; } //方法四:Handler分发Message对象,定时更新UI界面提交计划任务马上执行 caseR.id.btn4:{ //不推荐这种方式 //Messagemsg=newMessage(); //推荐使用这种获取对象的方式:从消息池中获得可用的Message对象 Messagemsg=Message.obtain(); msg.what=MESSAGE_FLAG; mHandler2.sendMessage(msg); break; } default: break; } } }
(3).MyRunnable.java
packagecom.chengdong.su.threaddemo.util; importandroid.util.Log; /*** *自定义一个MyRunnable线程 * *@authorscd * */ publicclassMyRunnableimplementsRunnable{ publicMyRunnable(){ super(); } /**TAG*/ privatefinalStringTAG=getClass().getSimpleName(); @Override publicvoidrun(){ for(inti=0;i<20;i++){ Log.e(TAG,Thread.currentThread().getName()+",实现的方法"+i); } } }
(4)MyThread.java
packagecom.chengdong.su.threaddemo.util; importandroid.util.Log; /*** *自定义一个线程 * *@authorscd * */ publicclassMyThreadextendsThread{ publicMyThread(){ super(); } /**TAG*/ privatefinalStringTAG=getClass().getSimpleName(); @Override publicvoidrun(){ super.run(); for(inti=0;i<10;i++){ Log.e(TAG,Thread.currentThread().getName()+",继承Thread类:"+i); } } }