I want the entire progress bar to be white, but can't figure out how to do it. This is what I have now:
<SeekBar
android:id="@+id/seek_bar"
android:layout_width="match_parent"
android:paddingTop="10dp"
android:thumbTint="@color/black"
android:progressTint="@color/white"
android:layout_height="wrap_content"
android:layout_marginLeft="28dp"
android:layout_marginRight="28dp"
android:gravity="center_horizontal"
/>
Which results in this - but I want the right side of the seekbar (the remaining progress) to be white too.
Is that what you're looking for :