Progressbar中的圆角进度条 - Android

时间:2014-04-18 08:38:29

标签: android progress-bar progress rounded-corners

我试图让进度条四舍五入,背景工作正常,但进度条(橙色)没有显示四舍五入,任何解决方案?

这是我申请的图片:

enter image description here

这就是我想要的:

enter image description here

这是我的进度条的代码:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@android:id/background">
    <shape>
        <corners android:radius="13dip" />
        <gradient
            android:angle="270"
            android:centerColor="#ff747674"
            android:centerY="0.5"
            android:endColor="#ff9d9e9d"
            android:startColor="#ff9d9e9d" />
    </shape>
</item>

<item android:id="@android:id/progress">
    <clip>
        <shape>
            <corners
                android:radius="13dip" />
            <gradient
                android:startColor="#f3c30b"
                android:centerColor="#efa200"
                android:centerY="0.5"
                android:endColor="#ce7428"
                android:angle="270"
                />
        </shape>
    </clip>
</item>

1 个答案:

答案 0 :(得分:0)

<clip>..</clip>替换为<scale android:scaleWidth="100%">..</scale>