How to make Android slider seekbar ?

If you’re looking to make Android slider seekbar then here is a very simple Android library to implement slide seekbar Implementation dependencies { compile ‘com.github.florent37:android-slidr:1.0.4’ } <com.github.florent37.androidslidr.Slidr android:layout_width=”250dp” android:layout_height=”wrap_content” app:slidr_regions_centerText=”false” app:slidr_region_leftColor=”#4CAF50″ /> Step <com.github.florent37.androidslidr.Slidr android:id=”@+id/slidr” android:layout_width=”250dp” android:layout_height=”wrap_content” app:slidr_region_leftColor=”#4CAF50″ app:slidr_step_colorizeAfterLast=”true” /> final Slidr slidr = (Slidr) findViewById(R.id.slideure); slidr.setMax(500); slidr.addStep(new Slidr.Step(“test”, 250, Color.parseColor(“#007E90”), Color.RED)); slidr.setTextMax(“max\nvalue”); slidr.setCurrentValue(300); slidr.setListener(new … Read more