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

PrograssBar的setIndeterminateDrawable不起作用

时间:2016-06-14 00:54:29      阅读:1121      评论:0      收藏:0      [点我收藏+]

标签:

是设置绘制不显示进度的进度条的Drawable对象
使用中发现,在xml中设置IndeterminateDrawable可以正常使用,但是如果需要在代码中更换图片使用setIndeterminateDrawable时,PrograssBar被隐藏掉。

此时应使用方法

Drawable d = this.getResources().getDrawable(R.id.dd);

d.setBounds(1,1,16,16);

progressBar.setIndeterminateDrawable(d);

PrograssBar的setIndeterminateDrawable不起作用

标签:

原文地址:http://www.cnblogs.com/dubo-/p/5582563.html

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