Enables entrance transition.
Entrance transition is the standard slide-in transition that shows rows of data in
browse screen and details screen.
The method is ignored before LOLLIPOP (API21).
This method must be called in or
before onCreate(). Typically entrance transition should be enabled when savedInstance is
null so that fragment restored from instanceState does not run an extra entrance transition.
When the entrance transition is enabled, the fragment will make headers and content
hidden initially.
When data of rows are ready, app must call {@link #startEntranceTransition()} to kick off
the transition, otherwise the rows will be invisible forever.
It is similar to android:windowsEnterTransition and can be considered a late-executed
android:windowsEnterTransition controlled by app. There are two reasons that app needs it:
Workaround the problem that activity transition is not available between launcher and
app. Browse activity must programmatically start the slide-in transition.
Separates DetailsOverviewRow transition from other rows transition. So that
the DetailsOverviewRow transition can be executed earlier without waiting for all rows
to be loaded.
Transition object is returned by createEntranceTransition(). Typically the app does not need
override the default transition that browse and details provides.
if (TransitionHelper.systemSupportsEntranceTransitions()) {
mEntranceTransitionEnabled = true;
}