6

我已经使用LayeredDrawable自定义了SeekBar,drawable 工作正常,但是用作背景的 drawable 在角落处变圆(两个角落,这里只显示右端。当拇指移动到最左边时,左角也是圆角的。注:原图为矩形)。我如何使它成为矩形?

在此处输入图像描述

这是我的 LayerdDrawable xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
    <bitmap android:src="@drawable/progress_bg" />
</item>
<item android:id="@android:id/progress">
    <clip>
        <bitmap android:src="@drawable/progress" />
    </clip>
</item>
</layer-list>
4

1 回答 1

4

您可以从android-developers Google Group 上发布的这个(相关)问题中提取信息。注意<corners android:radius="5dip" />。这是您需要更改的参数。

更新:什么鬼,我会发布一些代码。= )

<item android:id="@android:id/progress">
    <clip>
        <shape>
            <corners android:radius="0dip" />
        </shape>
    </clip>
</item> 

您可能需要对secondaryProgress等做同样的事情。

于 2011-02-11T16:01:19.113 回答