问题机型:htc wildfire
rom:2.3.5
问题描述:
R.drawable.progressbar_horizontal_jacinth是layer-list配置文件;
holder.infoprogressPb.setProgressDrawable(context.getResources().getDrawable(R.drawable.progressbar_horizontal_jacinth));
导致进度条不显示.
第一次尝试:
LayerDrawable layer = (LayerDrawable) context.getResources().getDrawable(R.drawable.progressbar_horizontal_blue);
layer.setBounds(holder.infoprogressPb.getProgressDrawable().getBounds());
holder.infoprogressPb.setProgressDrawable(layer);
进度条显示了,但是没有进度.
最终决定,通过second和progress两个状态分别显示不同颜色;
参考:
http://blog.youkuaiyun.com/fzh0803/article/details/9622097;