fix return button
This commit is contained in:
parent
97bb141a81
commit
c8cdc3aac0
@ -419,6 +419,7 @@ public abstract class BaseActivity
|
||||
sharingFragment = SharingFragment.newInstance();
|
||||
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
||||
ft.replace(R.id.activity_content, sharingFragment);
|
||||
ft.addToBackStack(null);
|
||||
ft.commit();
|
||||
}
|
||||
|
||||
@ -428,6 +429,7 @@ public abstract class BaseActivity
|
||||
userListFragment = UsersListFragment.newInstance();
|
||||
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
||||
ft.replace(R.id.activity_content, userListFragment);
|
||||
ft.addToBackStack(null);
|
||||
ft.commit();
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user