我的布局xml如下:
<SeekBar
android:id="@+id/progress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_margin="10dp"
android:gravity="center"
android:progressDrawable="@drawable/progressbar_drawable"
android:progress="50"
android:thumb="@drawable/progressbar_handle_selector"
android:layout_toLeftOf="@+id/showChat"
android:layout_toRightOf="@+id/play" />
Seekbar的进度drawable如下:
@drawable/progressbar_drawable
<?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/bg_progressbar_9patch"/>
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:angle="90"
android:endColor="#d9b546"
android:startColor="#cc520f" />
</shape>
</clip>
</item>
</layer-list>
结果,背景位图(白色)与进度可绘制(橙色)相比,不会在高度上拉伸并且仍然太低,这是一个示例:
更重要的是,它在不同的屏幕上看起来不同:背景位图与进度可绘制相比具有不同的高度。例如(另一个屏幕):
我的问题是:为什么进度和背景可绘制对象(橙色和白色条纹)总是具有相同的高度以及如何使它们具有相同的高度?
更新
素材资源: