Answers for "androidx bottomnavigationview"

1

dependencies for bottom navigation

compile 'com.android.support:design:25.0.0'
Posted by: Guest on May-07-2020
2

android bottomnavigationview set current item

BottomNavigationView bottomNavigationView;
bottomNavigationView = (BottomNavigationView) findViewById(R.id.bottomNavigationView);
bottomNavigationView.setOnNavigationItemSelectedListener(myNavigationItemListener);
bottomNavigationView.setSelectedItemId(R.id.my_menu_item_id);
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language