You will learn: Adding bottom navigation drawer Disabling shifting mode in bottom nav Prerequisite: Should know to create a new project in Android Studio Follow the steps: 1. Go to build.gradle (Module: app) and add the following dependency and sync the project compile 'com.android.support:design:27.1.0' 2. Go to the layout file and add the following xml code < android.support.design.widget.BottomNavigationView android :id= "@+id/bottom_nav_view" android :layout_width= "match_parent" android :layout_height= "wrap_content" android :layout_gravity= "start" design :menu= "@menu/menu_bottom_nav" /> For @menu/menu_bottom_nav : <? xml version= "1.0" encoding= "utf-8" ?> < menu xmlns: android = "http://schem...
Learn Android by Examples
A guide to dive into mobile application development.