Android中HandlerThread的使用


           
 
Java代码 复制代码  收藏代码
  1. package com.easyway.android.basic;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.os.Handler;  
  6. import android.os.HandlerThread;  
  7. import android.os.Looper;  
  8. import android.os.Message;  
  9. import android.widget.EditText;  
  10. /** 
  11.  *  
  12.  * Android中HandlerThread的使用的方式 
  13.  *  
  14.  * @author longgangbai 
  15.  * 
  16.  */  
  17. public class AndroidHandlerThread  extends Activity{  
  18.     /** 
  19.      *  
  20.      */  
  21.     @Override  
  22.      protected void onCreate(Bundle savedInstanceState) {  
  23.           super.onCreate(savedInstanceState);  
  24.             
  25.           setContentView(R.layout.main);  
  26.           //打印了当前线程的ID  
  27.           System.out.println("Activity-->" + Thread.currentThread().getId());  
  28.             
  29.           //生成一个HandlerThread对象,实现了使用Looper来处理消息队列的功能,这个类由Android应用程序框架提供  
  30.           HandlerThread handlerThread = new HandlerThread("handler_thread");  
  31.             
  32.           //在使用HandlerThread的getLooper()方法之前,必须先调用该类的start();  
  33.           handlerThread.start();  
  34.             
  35.           //获取处理器  
  36.           MyHandler myHandler = new MyHandler(handlerThread.getLooper());  
  37.             
  38.           //获取信息  
  39.           Message msg = myHandler.obtainMessage();  
  40.             
  41.           //将msg发送到目标对象,所谓的目标对象,就是生成该msg对象的handler对象  
  42.           Bundle b = new Bundle();  
  43.           b.putInt("age"20);  
  44.           b.putString("name""Jhon");  
  45.           //设置数据  
  46.           msg.setData(b);  
  47.           //发送消息到队列  
  48.           msg.sendToTarget();  
  49.             
  50.      }  
  51.        
  52.      /** 
  53.       * 继承Handler类 
  54.       *  
  55.       * @author longgangbai 
  56.       * 
  57.       */  
  58.      class MyHandler extends Handler{  
  59.           public MyHandler(){  
  60.              
  61.           }  
  62.           public MyHandler(Looper looper){  
  63.              super(looper);  
  64.           }  
  65.           /** 
  66.            * 更改界面的方法 
  67.            */  
  68.           @Override  
  69.           public void handleMessage(Message msg) {  
  70.            Bundle b = msg.getData();  
  71.            int age = b.getInt("age");  
  72.            String name = b.getString("name");  
  73.            EditText text=(EditText)findViewById(R.id.txtCityName);  
  74.            text.setText("Name ="+name);  
  75.              
  76.            System.out.println("age is " + age + ", name is" + name);  
  77.       
  78.           }  
  79.      }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值