カスタム seekBarに問題があります。 http://android-holo-colors.com/を使用して seekBar の画像を提供しました。問題は seekBar のあいまいな始まりです。どうすればこの問題を解決できますか?! スクリーンショット:
このコード(私はチェックします、画像は色を除いてデフォルトと同じです.
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background"
android:drawable="@drawable/scrubber_track_red" />
<item android:id="@android:id/secondaryProgress">
<scale android:scaleWidth="100%"
android:drawable="@drawable/scrubber_secondary_red" />
</item>
<item android:id="@android:id/progress">
<scale android:scaleWidth="100%"
android:drawable="@drawable/scrubber_primary_red" />
</item>
</layer-list>
と SeekBar
<SeekBar
android:id="@+id/seekTrack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:progressDrawable="@drawable/scrubber_progress_red"
android:thumb="@drawable/scrubber_control_red"
android:indeterminate="false"
android:layout_weight="1"
style="?android:attr/progressBarStyleHorizontal"/>
前述のサービスから取得した画像(Androidホロカラー)