我已经使用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>