Advertisement
sigitsuryono25

bottombar

Feb 7th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6.  
  7. <!-- Other components and views -->
  8.  
  9. <com.google.android.material.bottomappbar.BottomAppBar
  10. android:id="@+id/bar"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="bottom"
  14. app:navigationIcon="@drawable/ic_menu_24"/>
  15.  
  16. <com.google.android.material.floatingactionbutton.FloatingActionButton
  17. android:id="@+id/fab"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. app:layout_anchor="@id/bar"/>
  21.  
  22. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement