2014-11-14 62 views
1

嗨,我需要一個定製的搜索條如何擴大progressDrawable到fitxy

 <SeekBar 
      android:id="@+id/seekBar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:progressDrawable="@drawable/volume_bar" /> 

它的作品的作品,但它被裁剪

clipped background

資源圖像看起來像

Original background

怎麼可以將drawable加入seekbar?

回答

0

我的解決方法是創建一個繪製的XML

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
    <solid android:color="@color/seekBarColor" /> 
    <corners android:radius="@dimen/seekerLineCornerRadius" /> 
</shape>