本文主要是介绍一起Talk Android吧(第一百八十回:Android中的Handler机制九),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
各位看官们大家好,上一回中咱们说的是Android中Handler机制的例子,这一回咱们继续说该例子。闲话休提,言归正转。让我们一起Talk Android吧!
看官们,由于时间的原因我们在上一回中只演示了布局文件,这一回将演示Activity的代码,下面是具体的代码,请大家参考:
package com.example.talk8.blogapp05_handler;import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;public class MainActivity extends AppCompatActivity {private TextView mNameMainThread;private TextView mIDMainThread;private Button mBTStartMsg;private Button mBTEndMsg;private TextView mNameSubThread;private TextView mIDSubThread;private Button mBTShowName;private Button mBTdShowId;//消息类型private final int MSG_START = 0;private final int MSG_END = 1;private final int MSG_SHOW_NAME = 2;private final int MSG_SHOW_ID = 3;private Thread mSubThread;public SubHandler mSubHandler;public Handler mSubThreadHandler;public Looper mSubThreadLooper;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//通过TextView控件显示主线程的名字和线程IDmNameMainThread = (TextView)findViewById(R.id.id_tv_name_main_thread);mIDMainThread = (TextView)findViewById(R.id.id_tv_id_main_thread);//通过Button控件向消息队列中来发送消息,这里有两个Button用来发送不同的消息mBTStartMsg = (Button) findViewById(R.id.id_bt_start_message);mBTEndMsg = (Button) findViewById(R.id.id_bt_end_message);//通过TextView控件显示子线程的名字和线程IDmNameSubThread = (TextView)findViewById(R.id.id_tv_name_sub_thread);mIDSubThread = (TextView)findViewById(R.id.id_tv_id_sub_thread);//通过Button控件来修改主线程中的控件内容,使其显示子线程的名字和IDmBTShowName = (Button) findViewById(R.id.id_bt_show_name);mBTdShowId = (Button) findViewById(R.id.id_bt_show_id);//创建自定义的Handler对象mSubHandler = new SubHandler();//创建子线程,并且在子线程中实现属于子线程自己的Handler机制mSubThread = new Thread( () ->{//1.初始化消息队列Looper.prepare();//2.创建子线程自己的LoopermSubThreadLooper = Looper.myLooper();if(mSubThreadLooper != null) {//3.创建子线程自己的Handler类对象,这里是匿名对象mSubThreadHandler = new Handler() {@Overridepublic void handleMessage(Message msg) {//重写Handler方法用来处理消息队列中的消息super.handleMessage(msg);switch (msg.what){case MSG_SHOW_NAME:Toast.makeText(getApplicationContext(),""+msg.obj,Toast.LENGTH_LONG).show();sendMsg(msg.what,""+msg.obj); //send msg to Main threadbreak;case MSG_SHOW_ID:Toast.makeText(getApplicationContext(),""+msg.obj,Toast.LENGTH_LONG).show();sendMsg(msg.what,""+msg.obj);break;default:break;}}};//4.启动消息队列Looper.loop();}else {sendMsg(0,"sub looper is null");}//5.销毁子线程的Looper以及消息队列mSubThreadLooper.quit();});mSubThread.start();mNameMainThread.setText("Nmae: "+Looper.myLooper().toString());mIDMainThread.setText("ID: "+Thread.currentThread().getId());//给主线程中的消息队列中发送消息mBTStartMsg.setOnClickListener(v ->sendMsg(MSG_START,"Start"));mBTEndMsg.setOnClickListener(v -> sendMsg(MSG_END,"End"));mNameSubThread.setText("Name: "+ mSubThread.getName());mIDSubThread.setText("ID: "+mSubThread.getId());//显示子线程的名字和IDmBTShowName.setOnClickListener(v -> showName() );mBTdShowId.setOnClickListener(v -> showId());}//public class SubHandler extends Handler {//主线程中的消息处理,前两条消息,只是弹出Toast,并且显示消息内容//后两条消息是从子线程中发出的,用来显示子线程的名字和ID@Overridepublic void handleMessage(Message msg) {super.handleMessage(msg);switch (msg.what){case MSG_START:showMessage(msg.obj.toString());break;case MSG_END:showMessage(msg.obj.toString());break;case MSG_SHOW_NAME:mNameSubThread.setText((String)msg.obj);break;case MSG_SHOW_ID:mIDSubThread.setText((String)msg.obj);break;default:showMessage(msg.obj.toString());break;}}}//向主线程的消息队列中发送消息public void sendMsg(int type,String content) {Message msg = new Message();msg.what = type;msg.obj =content;mSubHandler.sendMessage(msg);}public void showMessage(String s) {String text ="Recived Message,It is: ";if(s != null) {Toast.makeText(getApplicationContext(), text+s, Toast.LENGTH_LONG).show();}else {Toast.makeText(getApplicationContext(), text+"empty." , Toast.LENGTH_LONG).show();}}public void showName() {Message m = new Message();m.what = MSG_SHOW_NAME;m.obj= "Name: "+mSubThreadLooper.toString();mSubThreadHandler.sendMessage(m);}public void showId() {Message m = new Message();m.what = MSG_SHOW_ID;m.obj= "Id: "+mSubThread.getId();mSubThreadHandler.sendMessage(m);}
}
看官们,我们在代码中主要的地方都添加了注释,并且在部分涉及到流程的地方还添加了数字符号,请大家结合我们在前面章回中介绍的Handler使用步骤来查看代码,相信大家都可以看明白。下面是程序的运行结果,请大家参考。
结合代码和程序运行结果,我们对此程序做一些说明:
在主线程中我们通过点击按钮来向消息队列中发送消息,主线程的Handler收到消息后弹出Toast并且显示消息内容;大家注意,主线程中的Looper是Activity创建的,我们在前面章回中分析过,为了更好的演示Handler机制,我们使用Thread创建了子线程,并且在子线程创建了Looper以及Handler,子线程中也是通过点击按钮发送消息的,子线程的Handler收到消息后又把消息发送了主线程的消息队列中,主线程的Handler收到消息后在屏幕上显示子线程的名称的ID。这个感觉有点绕呀,为什么不直接在子线程中显示子线程的名称的ID?
各位看官,关于Android中Handler机制的例子咱们就介绍到这里,欲知后面还有什么例子,且听下回分解!
这篇关于一起Talk Android吧(第一百八十回:Android中的Handler机制九)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!