Guest User

Untitled

a guest
May 29th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public void showFragment(Fragment fragment){
  2. getSupportFragmentManager()
  3. .beginTransaction()
  4. .addToBackStack(null)
  5. .replace(R.id.layout1, fragment)
  6. .commit();
  7. }
Add Comment
Please, Sign In to add comment