Skip to content

Instantly share code, notes, and snippets.

@harmittaa
Created November 23, 2019 19:09
Show Gist options
  • Save harmittaa/74f3ffe37d5c5a5b2497d1ed197ed826 to your computer and use it in GitHub Desktop.
Save harmittaa/74f3ffe37d5c5a5b2497d1ed197ed826 to your computer and use it in GitHub Desktop.
Bottom navigation bar example
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="16dp"
android:background="@drawable/bottom_navigation_background"
android:elevation="8dp"
app:itemIconTint="@drawable/bottom_navigation_color_selector"
app:labelVisibilityMode="unlabeled"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/bottom_navigation_menu" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment