如何在进度条中将颜色设置为二次可绘制

时间:2012-09-03 09:13:50

标签: android colors progress-bar drawable

我有这段代码

 pb = (ProgressBar) findViewById(R.id.progressBar1);
    final float[] roundedCorners = new float[] { 5, 5, 5, 5, 5, 5, 5, 5 };
    ShapeDrawable pgDrawable = new ShapeDrawable(new RoundRectShape(roundedCorners, null, null));
    String MyColor = "#00FF00";
    pgDrawable.getPaint().setColor(Color.parseColor(MyColor));
    ClipDrawable progress = new ClipDrawable(pgDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);
    pb.setProgressDrawable(progress);
    pb.setBackgroundDrawable(getResources().getDrawable(android.R.drawable.progress_horizontal));

此代码中的问题是,对于可绘制的进度和可绘制的辅助进度,我具有相同的颜色。

如何设置社会进步颜色?

2 个答案:

答案 0 :(得分:9)

在下面的示例中指定progressDrawable

这是一个布局:

<ProgressBar
    android:id="@+id/gauge"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="wrap_content"
    android:layout_height="4dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/section"
    android:progress="50" 
    android:progressDrawable="@drawable/progressbar"/>

这转到drawable/progressbar.xml,在这里您可以为两个进度条指定背景和颜色。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@android:id/background">
    <shape>
        <gradient
                android:startColor="@color/basecolor"
                android:endColor="@color/basecolor"
                android:angle="270"
        />
    </shape>
</item>

<item android:id="@android:id/secondaryProgress">
    <clip>
        <shape>
            <gradient
                    android:startColor="#808080"
                    android:endColor="#808080"
                    android:angle="270"
            />
        </shape>
    </clip>
</item>
<item android:id="@android:id/progress">
    <clip>
        <shape>
            <gradient
                android:startColor="#ffcc33"
                android:endColor="#ffcc33"
                android:angle="270" />
        </shape>
    </clip>
</item>

答案 1 :(得分:2)

我也面临同样的问题。 我在上面的答案中加了一些额外的点。 搜索栏或进度条分为三层。第一层是背景层,高于该次要进度层,高于该主要进度。

您可以将自定义颜色设置为像这样的进度条

<item android:id="@android:id/background"
    android:drawable="@drawable/progress_bar_nor">       
</item>    
<item android:id="@android:id/secondaryProgress"
    android:drawable="@drawable/progress_bar_nor">       
</item>
<item
    android:id="@android:id/progress"
    android:drawable="@drawable/progress_bar_sel"/>

或者像Ridcully在上面的回答中所说的那样

有些android os版本没有使用辅助进度的背景颜色。我已经检查了android 4.1.2三星8英寸平板电脑。这是行不通的。在该场景中,使用背景通过设置背景,辅助进度颜色

为次要进度设置自定义颜色