android seekbar progressdrawable:背景位图不拉伸(高度)

时间:2013-01-06 16:36:20

标签: android seekbar

我的布局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 / 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>

因此,背景位图(白色)不会拉伸高度并且与进度可绘制(橙色)相比仍然太低,这是一个示例: enter image description here

更重要的是,它在不同的屏幕上看起来有所不同:背景位图与可绘制的进度相比具有不同的高度。例如(另一个屏幕):

enter image description here

我的问题是:为什么没有进度和背景可绘制(橙色和白色条纹)始终具有相同的高度以及如何使它们具有相同的高度?


更新

Png资源:

enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

我从你的图像中创建了9-patch并将它放在drawable-hdpi文件夹中,一切看起来都很好......我在eclipse ui预览器中有一些文物,但设备上的一切都很好...... enter image description here

https://dl.dropbox.com/u/13106986/bg_progressbar_patch.9.png