I am making a seekbar in android with its maximum value as 12.
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/mapview"
android:layout_alignParentLeft="true"
android:layout_marginBottom="32dp"
android:max="12"
android:progress="0"
android:layout_marginTop="60dp"
android:secondaryProgress="0" />
i have to set text like 1,2,3,4….12 in my xml design below the seekbar corresponding to the exact interval? How to achieve this?
Please use below code