为ProgressBar drawable设置不同的颜色,但是同样的XML drawable

时间:2017-06-13 10:27:49

标签: android progress-bar

我正在关注xml文件。我想使用一些背景颜色制作进度条的形状。 但我的每个progressBar将包含不同的背景颜色。但我想只在一个包含形状和不同颜色的xml文件中执行此操作,以便我可以减少drawable中的xml文件。

Custom_horizo​​ntal_bar:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <!--<corners android:radius="25dip" />-->
            <gradient android:startColor="#ffffff" android:centerColor="#ffffff"
                android:centerY="0.75" android:endColor="#ffffff" android:angle="90" />
            <stroke android:width="1dp" android:color="#6B8E23" />
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <!--<corners android:radius="25dip" />-->
                <gradient android:startColor="#4d94ff" android:endColor="#4d94ff"
                    android:angle="90" />
                <stroke android:width="1dp" android:color="#6B8E23" />
            </shape>
        </clip>
    </item>
</layer-list>

进度:

<ProgressBar
              android:id="@+id/myProgress2"

                style="?android:attr/progressBarStyleHorizontal"
                android:layout_width="300dp"
                android:layout_height="30dp"
                android:layout_centerHorizontal="true"

                android:max="100"
                android:progress="60"
                android:progressDrawable="@drawable/custom_horizontal_bar"
                android:secondaryProgress="0" />

请提出任何建议。

1 个答案:

答案 0 :(得分:1)

尝试这种方式:

1

LayerDrawable layerDrawable = (LayerDrawable) getResources()
    .getDrawable(R.drawable.Custom_horizontal_bar);
GradientDrawable gradientDrawable = (GradientDrawable) layerDrawable
    .findDrawableByLayerId(R.id.progress);
gradientDrawable.setColor(...);

ProgressBar myProgress2 = (ProgressBar)findViewById(R.id.myProgress2);
myProgress2.setProgressDrawable(gradientDrawable);

2

ProgressBar myProgress2 = (ProgressBar)findViewById(R.id.myProgress2);

Drawable bgDrawable = myProgress2.getProgressDrawable();
bgDrawable.setColorFilter(Color.BLUE, android.graphics.PorterDuff.Mode.MULTIPLY);
myProgress2.setProgressDrawable(bgDrawable);