次のシークバーを使用しています
<SeekBar
android:id="@+id/sbCardSpeed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginRight="5dp"
android:max="100"
android:progress="50"
android:progressDrawable="@drawable/seekbar_progress"/>
seekbar_progress.xml:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background"
android:drawable="@drawable/background_fill"
/>
<item
android:id="@android:id/progress"
android:drawable="@drawable/seekbar_progress_bg"
/>
</layer-list>
background_fill.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FFFFFF" //white color
android:centerColor="#FFFFFF"
android:endColor="#FFFFFF"
android:angle="90" />
</shape>
seekbar_progress_bg.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FF8400" //orange color
android:centerColor="#FF8400"
android:endColor="#FF8400"
android:angle="90" />
</shape>
プログレスバーがオレンジ色の1色になる問題。親指を動かすと、まだ両側がオレンジ色です。白い背景が表示されません。私が間違っているのは何ですか?
ありがとうございました