Merge "Use fragment transition animation for 1pane."

This commit is contained in:
Makoto Onuki 2011-06-08 16:24:02 -07:00 committed by Android (Google) Code Review
commit 3b91d0ce0f
1 changed files with 2 additions and 0 deletions

View File

@ -551,6 +551,7 @@ class UIControllerOnePane extends UIControllerBase {
Log.d(Logging.LOG_TAG, this + " showFragment: adding " + fragment);
}
ft.add(R.id.fragment_placeholder, fragment);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
commitFragmentTransaction(ft);
}
@ -617,6 +618,7 @@ class UIControllerOnePane extends UIControllerBase {
}
removeFragment(ft, installed);
ft.attach(mPreviousFragment);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_CLOSE);
commitFragmentTransaction(ft);
mPreviousFragment = null;
return;