handler要实现在一个线程之中发送消息,使用looper类处理消息队列的功能,默认的是UI主线程的looper,现在我们重写了handler,我们在这里做一个可以传入looper的构造函数,这样我们就可以把handler绑定到别的线程里了,再用这个handler发消息的话,都是在另外一个我们绑定的线程上处理了。要用到一个handlerthread类。这个类是集成looper、handler、和thread三个的一个类。

public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        init();

        HandlerThread hThread=new HandlerThread("h_Thread");

        hThread.start();

        myhandler myhandler=new myhandler(hThread.getLooper());

        Message msg=myhandler.obtainMessage();

        msg.sendToTarget();//把 Message发送到目标对象,目标对象就是生成msg的目标对象。

    }

class myhandler extends Handler{

    public myhandler(){}

    public myhandler(Looper looper){

        super(looper);

    }

    public void handleMessage(Message msg) {

        Log.e("这是新线程", "》》》》》》》》》》》》》》》》》新线程的测试");

    }

}
posted on 2011-10-17 14:40  瓦里奥  阅读(1622)  评论(0编辑  收藏  举报