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

How to make Bubble SeekBar in Android ?

If you’re looking to make A beautiful Android custom seek bar, which has a bubble view with progress appearing upon when seeking Here is the complete implementation of Bubble Seekbar The LATEST_VERSION: dependencies { // lite version (recommended) // e.g. implementation ‘com.xw.repo:bubbleseekbar:3.20-lite’ implementation ‘com.xw.repo:bubbleseekbar:${LATEST_VERSION}-lite’ // enhanced version // e.g. implementation ‘com.xw.repo:bubbleseekbar:3.20’ // implementation ‘com.xw.repo:bubbleseekbar:${LATEST_VERSION}’ } … Read more

Make Android chat app using Applozic SDK

If you’re looking to make Android Real time chat app then here is full implementation of Applozic SDK Introduction Applozic brings real-time engagement with chat, video, and voice to your web, mobile, and conversational apps. We power emerging startups and established companies with the most scalable and powerful chat APIs, enabling application product teams to … Read more