1

我有这个代码

 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));

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

如何设置次要进度颜色?

4

2 回答 2

12

在下面的示例中指定一个progressDrawablelike:

这是一个布局:

<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>

于 2012-09-03T09:19:08.040 回答
3

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

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

<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 英寸平板电脑。这没用。在这种情况下,使用背景通过设置背景、次要进度颜色来为次要进度设置自定义颜色

于 2014-11-26T08:41:17.703 回答