Android笔记:根据进度代码改变progressbar背景颜色,ClipDrawable,LayerDrawable,setProgre...
做个笔记,主要是需要使用ClipDrawable、LayerDrawable: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 private void setProgressBg( int progress){ int a=progress* 255 / 100 ; int color=Color.argb(a, 255 , 90 , 147 ); ColorDrawablecolorDrawable= new ColorDrawable(); colorDrawable.setColor(color); ClipDrawableclipDrawable= new ClipDrawable(colorDrawable,Gravity.LEFT,ClipDrawable.HORIZONTAL); Drawabledrawable=getResources().getDrawable(R.color.transparent); Drawable[]layers= new Drawable[]{drawable,clip...