android handler 多线程demo

12 篇文章 0 订阅
10 篇文章 0 订阅
andriod提供了 Handler 和 Looper 来满足线程间的通信。为了研究其中线程机制的问题,写了2个demo:

  Demo1:

package com.mp;

import android.os.Bundle;
import android.os.Handler;
import android.os.HandlerThread;
import android.util.Log;
import android.app.Activity;

public class myThread extends Activity {
	private Handler handler = new Handler();

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		Log.d("jy","Begin!!");
		handler.post(new MyRunnable());
		System.out.println("Oncreate---The Thread id is :"	+ Thread.currentThread().getId());
		setContentView(R.layout.activity_handler_thread);
	}

	private class MyRunnable implements Runnable {
		public void run() {
			System.out.println("Runnable---The Thread is running");
			System.out.println("Runnable---The Thread id is :"	+ Thread.currentThread().getId());
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				
				e.printStackTrace();
			}
		}

	}

}

在这个demo中,整个过程如下:

  程序已启动,就把MyRunnable加入到消息队列中,android的handler是异步机制,所以在handler.post(new MyRunnable());  之后,程序会继续执行,所以以后的语句会继续,这时候我们输出Oncreate中的当前线程ID。同时MyRunnable的run方法也在运行,一样输出run方法中的当前线程ID,然后让线程休眠6秒。
  demo的结果分析:
  1:控制台的输出: Oncreate---The Thread id is :1
  Runnable---The Thread is running
  Runnable---The Thread id is :1
  2:程序启动后6秒,我们才看到main.xml中的内容(只有一个textview)
  这2个结果都表明handler和主线程是同一个线程。如果这时候你做的是一个耗时的操作(比如下载),那么这样是不可行的。
  于是,android给我们提供了Looper这样一个类。其实Android中每一个Thread都跟着一个Looper,Looper可以帮助Thread维护一个消息队列。

  Demo2:

package com.mp;

import android.os.Bundle;
import android.os.Handler;
import android.os.HandlerThread;
import android.util.Log;
import android.app.Activity;

public class myThread extends Activity {
	private Handler handler = null;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		Log.d("jy","Begin!!");
		HandlerThread handlerThread = new HandlerThread("myHandlerThread");
		handlerThread.start();
		handler = new Handler(handlerThread.getLooper());
		handler.post(new MyRunnable());
		System.out.println("Oncreate---The Thread id is :"	+ Thread.currentThread().getId());
		setContentView(R.layout.activity_handler_thread);
	}

	private class MyRunnable implements Runnable {
		public void run() {
			System.out.println("Runnable---The Thread is running");
			System.out.println("Runnable---The Thread id is :"	+ Thread.currentThread().getId());
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				
				e.printStackTrace();
			}
		}

	}

}

    在这个demo中,用到了HandlerThread,在HandlerThread对象中可以通过getLooper方法获取一个Looper对象控制句柄,我们可以将其这个Looper对象映射到一个Handler中去来实现一个线程同步机制。于是就有以下结果;

  1:控制台的输出: Oncreate---The Thread id is :1
  Runnable---The Thread is running
  Runnable---The Thread id is :10
  2:程序启动后,我们立刻看到main.xml中的内容。
  这样就达到了多线程的结果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值