任何默认的 ProgressBar 都有一个 ClipDrawable 级别,例如一个绿色的 Drawable 在我的设备上填充灰色背景,在其他一些上填充黄色。
我的问题:当进度小于最大值时,是否可以在没有这个(部分)空白背景的情况下创建 ProgressBar,或者我应该使用 ImageView 来代替?我只需要 ClipDrawable 来改变它的宽度,使它看起来像一个图表,而灰色背景永远不会出现。
任何默认的 ProgressBar 都有一个 ClipDrawable 级别,例如一个绿色的 Drawable 在我的设备上填充灰色背景,在其他一些上填充黄色。
我的问题:当进度小于最大值时,是否可以在没有这个(部分)空白背景的情况下创建 ProgressBar,或者我应该使用 ImageView 来代替?我只需要 ClipDrawable 来改变它的宽度,使它看起来像一个图表,而灰色背景永远不会出现。
像这样创建layer-list
drawable。
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape android:shape="rectangle" >
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<gradient
android:startColor="#234"
android:centerColor="#234"
android:centerY="0.75"
android:endColor="#a24"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:startColor="#144281"
android:centerColor="#0b1f3c"
android:centerY="0.75"
android:endColor="#06101d"
android:angle="270"
/>
</shape>
</clip>
</item>
重点是用android:id="@android:id/background
用途做物品@android:color/transparent
然后将其设置android:progressDrawable
为ProgressBar
<ProgressBar
android:id="@+id/progressBar"
android:progressDrawable="@drawable/your_layer_list_created_on_previous_step"
android:layout_width="fill_parent"
android:layout_height="8dp"
style="?android:attr/progressBarStyleHorizontal"
android:indeterminateOnly="false"
android:max="100" />