我有此代码
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));
在这段代码的问题是,对于进度绘制和二级进度绘制我有相同的颜色。
如何设置socondary进度颜色吗?
指定一个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>
我也面临着同样的问题。 我添加一些额外的点上面的回答。 搜索条或进度被吸入三层。 第一层是背景层,该辅助层的进展以上,高于该主进展。
您可以设置自定义颜色,以进度条是这样
<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操作系统版本不使用的二次进步的背景色。 我已经检查在Android 4.1.2三星8寸平板电脑。 这是行不通的。 在这种情况下使用的背景设定背景,二级进度颜色设置为次要进度您的自定义颜色