android can't create handler inside thread that has not called Looper.prepare()解决方案

安卓不能在线程中操作ui 所以我在线程中操作UI时候就会报错

后来发现在操作ui那个前后加上Looper.prepare();  Looper.loop();

eg:

Looper.prepare(); 
Toast.makeText(CloseComputerActivity.this, "22222222222!", Toast.LENGTH_LONG)
.show();
Looper.loop();


然后问题解决

版权声明:本文为博主原创文章,未经博主允许不得转载。

posted @ 2014-06-04 14:08  一直向北  阅读(218)  评论(0编辑  收藏  举报