android在activity启用线程,没有出错,调试过了,不执行run()方法,附上代码。
不启线程的时候,这些代码的运行都没问题。启用线程,不执行run()的方法。需要添加什么权限吗?求大神!Fileparent=newFile("data/data/com....
不启线程的时候,这些代码的运行都没问题。
启用线程,不执行run()的方法。
需要添加什么权限吗?
求大神!
File parent = new File("data/data/com.example.down/files");
if (!parent.exists()) {
parent.mkdirs();
}
String filePath = "data/data/com.example.down/files";
String imgurl = "http://www.baidu.com/img/bdlogo.gif";
DownFile d = new DownFile();
d.downIamge(imgurl, filePath, "233.gif");
File file = new File(filePath+"/233.gif");
Uri uri = Uri.fromFile(file);
pic=(ImageView)findViewById(R.id.img);
pic.setImageURI(uri); 展开
启用线程,不执行run()的方法。
需要添加什么权限吗?
求大神!
File parent = new File("data/data/com.example.down/files");
if (!parent.exists()) {
parent.mkdirs();
}
String filePath = "data/data/com.example.down/files";
String imgurl = "http://www.baidu.com/img/bdlogo.gif";
DownFile d = new DownFile();
d.downIamge(imgurl, filePath, "233.gif");
File file = new File(filePath+"/233.gif");
Uri uri = Uri.fromFile(file);
pic=(ImageView)findViewById(R.id.img);
pic.setImageURI(uri); 展开
3个回答
展开全部
Thread构造时把Runnable传进去
Thread t1=new Thread(); ----> Thread t1=new Thread(MainActivity.this);
Thread t1=new Thread(); ----> Thread t1=new Thread(MainActivity.this);
更多追问追答
追问
我run()里面的代码,不跑线程就没事,一跑线程就崩溃了。pic.setImageURI(uri);跑线程的时候,注释这句就没事。
追答
你这pic有初始化吗?刚才报的错误是空指针异常
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Thread t = new Thread(this);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询