码迷,mamicode.com
首页 > 其他好文 > 详细

开发安全卫士中遇到的问题

时间:2014-05-03 00:48:54      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:安全卫士   thread   called   method   create   

异常一:

Can‘t create handler inside thread that has not called Looper.prepare()

这个异常是因为非主线程中默认没有创建对象。

所以就要看看该方法所在的线程是不是主线程

一看。真的不是。于是取消new Thread().start();搞定。

问题1:

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

pd.setTitle("下载中");

pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);

pd.show();

//File file=DownFile.Down(str, pd);刚才这段代码不在线程内。所以ProgressDialog不显示。

原因是不在子线程,在主线程。阻塞了UI刷新。


new Thread(new Runnable() {

@Override

public void run() {

// TODO Auto-generated method stub

String str=loginBean.getUrl();

File file=DownFile.Down(str, pd);

if(file!=null){

pd.dismiss();

}

}

}).start();

}

});


开发安全卫士中遇到的问题,布布扣,bubuko.com

开发安全卫士中遇到的问题

标签:安全卫士   thread   called   method   create   

原文地址:http://sw3458856.blog.51cto.com/6499064/1405210

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!