Skip to content

FAB & SnackBar

Ashok Varma edited this page Jul 3, 2016 · 3 revisions

SnackBar

Bottom Navigation automatically syncs with snackBar without any code.

FAB

Bottom Navigation Bar can sync with FAB. ##Setup

  • Both FAB and BottomNavigationBar Should be in Same Coordinator Layout.
  • Link all both components using setFab() Method on bottomNavigationBar

Code Snippet

FloatingActionButton fabHome = (FloatingActionButton) findViewById(R.id.fab_home);
BottomNavigationBar bottomNavigationBar = (BottomNavigationBar) findViewById(R.id.bnb);
bottomNavigationBar.setFab(fabHome);
Clone this wiki locally