您好我需要一个自定义的搜索栏
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:progressDrawable="@drawable/volume_bar" />
它起作用,但它被裁剪
资源图像看起来像那样
如何将drawable缩放到搜索栏?
答案 0 :(得分:0)
我的解决方法是创建一个xml drawable
<?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>