BaseFragment
public class BaseFragment extends BrandedFragment
| java.lang.Object | |||
| ↳ | android.app.Fragment | ||
| ↳ | androidx.leanback.app.BrandedFragment | ||
| ↳ | androidx.leanback.app.BaseFragment |
BrowseFragment |
This class is deprecated. |
DetailsFragment |
This class is deprecated. |
VerticalGridFragment |
This class is deprecated. |
Base class for leanback Fragments. This class is not intended to be subclassed by apps.
Summary
Public methods |
|
|---|---|
final ProgressBarManager |
Returns the |
void |
This method is deprecated. |
void |
This method is deprecated. |
void |
This method is deprecated. |
void |
Enables entrance transition. |
void |
When fragment finishes loading data, it should call startEntranceTransition() to execute the entrance transition. startEntranceTransition() will start transition only if both two conditions are satisfied: |
Protected methods |
|
|---|---|
Object |
Create entrance transition. |
void |
Callback when entrance transition is ended. |
void |
Callback when entrance transition is prepared. |
void |
Callback when entrance transition is started. |
void |
Run entrance transition. |
Inherited Constants |
||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Inherited methods |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Public methods
public final ProgressBarManagergetProgressBarManager()
Returns the ProgressBarManager.
| Returns | |
|---|---|
ProgressBarManager |
The |
public void prepareEntranceTransition()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 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.
public void startEntranceTransition()When fragment finishes loading data, it should call startEntranceTransition() to execute the entrance transition. startEntranceTransition() will start transition only if both two conditions are satisfied:
- prepareEntranceTransition() was called.
- has not executed entrance transition yet.
If startEntranceTransition() is called before onViewCreated(), it will be pending and executed when view is created.
Protected methods
protected ObjectcreateEntranceTransition()
Create entrance transition. Subclass can override to load transition from resource or construct manually. Typically app does not need to override the default transition that browse and details provides.
protected void onEntranceTransitionPrepare()Callback when entrance transition is prepared. This is when fragment should stop user input and animations.
protected void onEntranceTransitionStart()Callback when entrance transition is started. This is when fragment should stop processing layout.
protected voidrunEntranceTransition(Object entranceTransition)
Run entrance transition. Subclass may use TransitionManager to perform go(Scene) or beginDelayedTransition(). App should not override the default implementation of browse and details fragment.