oneHamidreza / MeowBottomNavigation

Android Meow Bottm Navigation
http://etebarian.com
1.33k stars 198 forks source link

how to set selected item #91

Open Ravi-Kant-Soni opened 2 years ago

Ravi-Kant-Soni commented 2 years ago

From the below code, I want to reselect the menu name based on a fragment. This code is defined in the Main activity.

public void fragmentLoad(Fragment fragment) { // meowBottomNavigation.show(2, false); // what should be code here

    getSupportFragmentManager()
            .beginTransaction()
            .replace(R.id.framelayout, fragment)
            .commit();
}