Skip to content

Instantly share code, notes, and snippets.

@sagar-viradiya
Created July 7, 2018 08:02
Show Gist options
  • Save sagar-viradiya/79425511dcb5bfe6c1fc13a83fa2c1c8 to your computer and use it in GitHub Desktop.
Save sagar-viradiya/79425511dcb5bfe6c1fc13a83fa2c1c8 to your computer and use it in GitHub Desktop.
BottomNavigationView menu
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/bottomNavFragmentOne"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/home_bottom_nav_item_title"/>
<item
android:id="@+id/bottomNavFragmentTwo"
android:icon="@drawable/ic_exposure_plus_1_black_24dp"
android:title="@string/screen_bottom_nav_title"/>
<item
android:id="@+id/bottomNavFragmentThree"
android:icon="@drawable/ic_exposure_plus_2_black_24dp"
android:title="@string/screen_bottom_nav_title"/>
</menu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment