Select Page
Exploring Bottom Sheets in Android

Exploring Bottom Sheets in Android

What is BottomSheet ? Bottom Sheet is a view that slides up from the bottom of the screen.Bottom sheets are displayed as a result of the user-triggered action, and also it can reveal additional content by swiping up. What are the Types ? According to material design,...
Beginners guide for Android TabLayout

Beginners guide for Android TabLayout

TabLayout provides a horizontal layout to display tabs.It makes it easy to implement scrolling tabs for your ViewPager.TabLayout providing the ability to switch between tabs by clicking on the according tab label and an indication of the current tab. In this post, I...
Quick guide for Bottom Navigation View in Android

Quick guide for Bottom Navigation View in Android

Bottom Navigation View has been added to version 25 of the Design Support Library! It Represents a standard bottom navigation bar for application, makes it easy for users to explore and switch between top-level views in a single tap. STEP 1 : In Gradle Add/Update the...
Multi select like WhatsApp in Android

Multi select like WhatsApp in Android

In this post, you will learn how to select multiple items from the list (recyclerview) like WhatsApp, using contextual action mode. Contextual action mode displays a contextual action bar at the top of the screen with action items such as “copy, edit, delete,...