Handler事件处理机制

注释:参考http://zhidao.baidu.com/link?url=XxHsVTbW3lcfJ2l8p3_uaPsB-Gmx-e-jU3-L-xy_EJiHJz2WXd1xkApNOhZaQ5XIHm3bfPMCvka4E4zwi2bfA_Y2F8COcBnLpQ-iIxqMDVC

当前线程如果是主线程的话,Handler handler = new Handler();
不是主线程的话,Looper.prepare(); Handler handler = new Handler();Looper.loop();
或者Handler handler = new Handler(Looper.getMainLooper())。

新开启的子线程传数据既可以使用ContentValues也可以使用bundle

你可能感兴趣的:(线程)