Im trying to change the color of a AppCompatSeekBar on a android project im working on.
This is the code im using for it
<android.support.v7.widget.AppCompatSeekBar
            android:id="@+id/seekbar"
            android:progressTint="@android:color/white"
            android:layout_width="match_parent"
            android:layout_centerInParent="true"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:layout_height="50dp"
            android:thumb="@drawable/closeprogress"
            />
and it looks like this
what i want is to change the color of the right part of seekbar ( after the baloon) to something like blue. Right now i can only change the "filled" portion of the bar to white.
