在我的申请中,我有一个SeekBar
。我使用layer-list将自定义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/profilecompleteness" />
<item
android:id="@+android:id/progress"
android:drawable="@drawable/profilecomplete_fill" />
</layer-list>`
和SeekBar的代码是
<SeekBar
android:id="@+id/user_profile_progressBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:progressDrawable="@drawable/custom_seekbar"
android:thumb="@drawable/transparent" />
使用此代码时,我的搜索栏仅显示可绘制的一半图像。如何在drawable中显示完整的图像。