android ProgressBar没有剪辑?

时间:2013-01-02 14:56:57

标签: android progress-bar

任何默认的ProgressBar都有一个ClipDrawable级别,例如绿色Drawable填充我设备上的灰色背景,其他一些是黄色。

enter image description here

我的问题:如果进度小于最大值或者我应该使用ImageView,是否可以在没有此(部分)空背景的情况下创建ProgressBar?我只需要ClipDrawable来改变它的宽度,所以它看起来像一个图表,而灰色背景永远不会出现。

1 个答案:

答案 0 :(得分:3)

像这样创建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" />