Please help me to create a seek bar with thinner line. Here is the code
<android.support.v7.widget.AppCompatSeekBar
android:id="@+id/sb_zoom_size"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_marginStart="0dp"
android:max="200"
android:padding="15dp"
android:progress="100"
app:tickMark="@color/colorPrimary"
app:tickMarkTint="@color/colorPrimary"
app:tickMarkTintMode="multiply"
android:progressTint="@android:color/darker_gray"/>
Thank you