-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
I am not able to call a fragment onTabselect. there is no error but the fragment doesnt load. BottomBar bottomBar = (BottomBar) findViewById(R.id.bottomBar);
bottomBar.setOnTabSelectListener(new OnTabSelectListener() {
@OverRide
public void onTabSelected(@idres int tabId) {
if (tabId == R.id.tab_friends) {
Fragment selectedFragment = ItemOneFragment.newInstance();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.frame_layout,selectedFragment);
transaction.commit();
}
}
});
Metadata
Metadata
Assignees
Labels
No labels