Home | History | Annotate | Download | only in loaderapp

Lines Matching full:xact

59         FragmentTransaction xact = openFragmentTransaction();
60 xact.add(R.id.smallPane, groupsList);
61 xact.add(R.id.largePane, contactsList);
62 xact.commit();
97 FragmentTransaction xact = openFragmentTransaction();
98 xact.addToBackStack(null);
103 xact.remove(findFragmentById(R.id.smallPane));
104 xact.add(R.id.largePane, details);
105 xact.commit();
108 xact.replace(R.id.largePane, details);
109 xact.commit();