How to make Croller a Circular seekbar in Android

If you’re looking to make a Croller a circular seekbar then here is the complete implementation of Croller a circular seekbar Usage Just add the following dependency in your app’s build.gradle dependencies { compile ‘com.sdsmdg.harjot:croller:1.0.7’ } XML <com.sdsmdg.harjot.crollerTest.Croller android:id=”@+id/croller” android:layout_width=”match_parent” android:layout_height=”match_parent” android:layout_centerInParent=”true” app:back_circle_color=”#EDEDED” app:indicator_color=”#0B3C49″ app:indicator_width=”10″ app:is_continuous=”true” app:label_color=”#000000″ app:main_circle_color=”#FFFFFF” app:max=”1000″ app:progress_primary_color=”#0B3C49″ app:progress_secondary_color=”#EEEEEE” app:start_offset=”45″ /> Java Croller … Read more