一. 在Activity中使用底部导航栏BottomNavigationView
步骤一:在菜单文件中定义底部导航菜单选项内容
1.1 新建menu文件menu_bottom_nav.xml(src/main/res/menu/menu_bottom_nav.xml)
1.2 构建menu_bottom_nav.xml(src/main/res/menu/menu_bottom_nav.xml)内容
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/item_bottomnav_home"
android:icon="@drawable/ic_main_home_black_256"
android:title="@string/home" />
<item
android:id="@+id/item_bottomnav_message"
android:icon="@drawable/ic_main_message_black_256"
android:title="@string/message" />
<item
android:id="@+id/item_bottomnav_addressbook"
android:icon