我想动态更改android中进度条的背景颜色。我按照本教程页面末尾附近的“奖金”部分进行了操作:
http://colintmiller.com/2010/10/how-to-add-text-over-a-progress-bar-on-android/
它会改变颜色,但只改变一次。如果多次调用,进度条将消失。这是代码。
这是进度条定义:
<ProgressBar android:id="@+id/progress_bar" android:layout_width="fill_parent"
android:layout_height="wrap_content" style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_marginRight="5dp" />
这是res / drawable / green_progress.xml中的可绘制定义:
<?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>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item
android:id="@android:id/progress">
<clip>
<shape>
<corners
android:radius="5dip" />
<gradient
android:startColor="@color/greenStart"
android:centerColor="@color/greenMid"
android:centerY="0.75"
android:endColor="@color/greenEnd"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
rex / values / colors.xml的条目:
<color name="greenStart">#ff33dd44</color>
<color name="greenMid">#ff0A8815</color>
<color name="greenEnd">#ff1da130</color>
最后,在代码中:
m_bar.setProgressDrawable(getResources().getDrawable(R.drawable.green_progress));
同样,问题是它第一次起作用,但随后使条形消失。
答案 0 :(得分:22)
请参阅Android ProgressBar.setProgressDrawable only works once?获取答案,重复如下:
我发现,当调用setprogressdrawable时,drawable不知道它的大小。最初设置时,它确实知道它的大小。这意味着搜索栏有一个新的可绘制集,但是drawable的大小为0,你什么都看不到。
解决方案是首先获取当前drawable的边界,然后设置新的drawable并最终再次设置边界:
Rect bounds = mySeekBar.getProgressDrawable().getBounds();
mySeekBar.setProgressDrawable(newSeekBarBackground);
mySeekBar.getProgressDrawable().setBounds(bounds);
答案 1 :(得分:11)
好吧,对于任何想要以编程方式进行操作的人来说:
Drawable bckgrndDr = new ColorDrawable(Color.RED);
Drawable secProgressDr = new ColorDrawable(Color.GRAY);
Drawable progressDr = new ScaleDrawable(new ColorDrawable(Color.BLUE), Gravity.LEFT, 1, -1);
LayerDrawable resultDr = new LayerDrawable(new Drawable[] { bckgrndDr, secProgressDr, progressDr });
resultDr.setId(0, android.R.id.background);
resultDr.setId(1, android.R.id.secondaryProgress);
resultDr.setId(2, android.R.id.progress);
progressBar.setProgressDrawable(resultDr);
将ids设置为drawable是至关重要的,并负责保留边界和实际进度状态栏