Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 11th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ActionBar Tab Fragment Inside Fragment
  2. FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
  3.     fragmentTransaction.replace(R.id.details_container, fragment);
  4.     fragmentTransaction.setTransition(transition);
  5.     fragmentTransaction.addToBackStack(null);
  6.     fragmentTransaction.commit();