我有一个自定义SeekBar:
<SeekBar
android:id="@+id/seekBar"
android:layout_width="@dimen/seekbar_width"
android:layout_height="wrap_content"
android:paddingTop="15px"
android:paddingBottom="15px"
android:secondaryProgress="0"
android:progress="0"
style="@style/CustomSeekBar"/>
这种风格:
<style name="CustomSeekBar">
<item name="android:layout_width">@dimen/seekbar_width</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:progressDrawable">@drawable/custom_seekbar_progress</item>
<item name="android:thumb">@drawable/slider_bar_grip</item>
</style>
我已经尝试了两种类型,如果有层列表。首先有九个补丁图像:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background" android:drawable="@drawable/slider_bar_track"></item>
<item android:id="@android:id/secondaryProgress" android:drawable="@drawable/slider_bar_track"></item>
<item android:id="@android:id/progress" android:drawable="@drawable/slider_bar_hlt" ></item>
</layer-list>
其次是项目和渐变:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:bottomLeftRadius="4px" android:topLeftRadius="4px" android:topRightRadius="4px" android:bottomRightRadius="4px"/>
<gradient android:startColor="@color/dark_grey" android:endColor="@color/light_grey" android:angle="-90.0" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:bottomLeftRadius="4px" android:topLeftRadius="4px" android:topRightRadius="4px" android:bottomRightRadius="4px"/>
<gradient android:startColor="@color/dark_grey" android:endColor="@color/light_grey" android:angle="-90.0" />
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:bottomLeftRadius="4px" android:topLeftRadius="4px" android:topRightRadius="4px" android:bottomRightRadius="4px"/>
<gradient android:startColor="@color/orange" android:endColor="@color/orange" android:centerColor="@color/light_orange" android:angle="90.0" />
</shape>
</clip>
</item>
</layer-list>
它的外观如下:
这就是图片的样子: 高度太高(进度,背景和拇指png都是12像素高,其中背景和进度png在顶部和底部具有透明像素以使它们具有相同的高度) { {0}}我在res文件夹中有这三个文件,它们具有相同大小的所有密度(正如我希望的那样)。 此外,进度始终延伸到SeekBar的整个宽度。我试图改变图层列表的顺序,但无济于事。
使用图层列表中的形状时,它看起来像这样: 至少在这里,进展是正确的,但高度仍然太高。
在这种情况下,我需要所有密度相同的高度(12px,而不是dp)。屏幕截图来自xhdpi设备。可绘制进度的高度与mdpi设备上的拇指相同。如何在所有设备上使它们看起来相同并且可绘制的进度小于拇指?
答案 0 :(得分:2)
问题是在进度和背景png的左边界定义的可拉伸区域。
可拉伸区域目前正好像在左边缘中间的1像素宽。这意味着你的png的水平中心线将被拉伸。但你需要的是“拉伸透明区域”。
做到这一点: