我有自定义搜索栏,我可以通过设置一个新的进度drawable来改变onProgressChanged中的颜色:
seek.setProgressDrawable(res.getDrawable(R.drawable.seekbar_bg1));
但是我想要一个具有从绿色到红色的纯色的搜索栏,具体取决于进度。 有没有办法使用像渐变颜色这样的东西,所以我不需要创建像这样的100个drawables?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item android:id="@+id/progressshape">
<clip>
<shape>
<solid android:color="@color/custom_yellow" />
</shape>
</clip>
</item>
</layer-list>
对于那些对解决方案感兴趣的人。我使用以下代码:
此方法设置颜色:
public void setProgressBarColor(int newColor){
LayerDrawable ld = (LayerDrawable) getProgressDrawable();
ClipDrawable d1 = (ClipDrawable) ld.findDrawableByLayerId(R.id.progressshape);
d1.setColorFilter(newColor, PorterDuff.Mode.SRC_IN);
}
并在onProgressChanged:
if(progress <= 50){
seek.setProgressBarColor(Color.rgb( 255 - (255/100 * (100 - progress*2)), 255, 0));
}else{
seek.setProgressBarColor(Color.rgb( 255, 255 - (255/100 * (progress - 50)*2), 0));
}
答案 0 :(得分:27)
我使用这种方法做这样的事情:
public void setProgressBarColor(ProgressBar progressBar, int newColor){
LayerDrawable ld = (LayerDrawable) progressBar.getProgressDrawable();
ClipDrawable d1 = (ClipDrawable) ld.findDrawableByLayerId(R.id.progressshape);
d1.setColorFilter(newColor, PorterDuff.Mode.SRC_IN);
}
然后,当您更新进度时,您只需更改所需的颜色。
答案 1 :(得分:4)
使用此:
bar.setProgressDrawable(new ColorDrawable(Color.rgb( red, green, blue)));
更改进度,更改红色,绿色,蓝色。