Please help me to how to draw a Radial SeekBar, Plaese check the image url that is actual design of seek bar. I tried many ways but not worked out properly.
I tried like this
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
tools:context="com.scanner.com.protracterview.MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="0"
android:id="@+id/number"
android:textSize="18sp"
android:layout_marginBottom="30dp"
android:gravity="center"/>
<com.goodiebag.protractorview.ProtractorView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:arcColor="#91d8f7"
app:arcProgressColor="#91d8f7"
app:tickColor="#4a4a4a"
app:indicatorType="line"
app:tickProgressColor="#abe6"
app:textColor="#000"
app:textProgressColor="#FF0000"
app:angleTextSize="0dp"
app:arcWidth="2dp"
app:progressWidth="2dp"
app:tickOffset="18dp"
app:tickLength="0dp"
app:angle="15"
android:id="@+id/protrat"
app:tickIntervals="15"
app:ticksBetweenLabel="three"
app:touchInside="true"
app:roundEdges="true"
android:layout_below="@+id/number"
android:layout_alignParentEnd="true" />