public interface

BrowseFragment.FragmentHost

 androidx.leanback.app.BrowseFragment.FragmentHost

Overview

Possible set of actions that BrowseFragment exposes to clients. Custom fragments can interact with BrowseFragment using this interface.

Summary

Methods
public voidnotifyDataReady(BrowseFragment.MainFragmentAdapter fragmentAdapter)

Fragments mapped to PageRow are required to invoke this callback once their data is created for transition, the entrance animation only after receiving this callback.

public voidnotifyViewCreated(BrowseFragment.MainFragmentAdapter fragmentAdapter)

Fragments are required to invoke this callback once their view is created inside Fragment method.

public voidshowTitleView(boolean show)

Show or hide title view in BrowseFragment for fragments mapped to PageRow.

Methods

public void notifyViewCreated(BrowseFragment.MainFragmentAdapter fragmentAdapter)

Fragments are required to invoke this callback once their view is created inside Fragment method. BrowseFragment starts the entrance animation only after receiving this callback. Failure to invoke this method will lead to fragment not showing up.

Parameters:

fragmentAdapter: BrowseFragment.MainFragmentAdapter used by the current fragment.

public void notifyDataReady(BrowseFragment.MainFragmentAdapter fragmentAdapter)

Fragments mapped to PageRow are required to invoke this callback once their data is created for transition, the entrance animation only after receiving this callback. Failure to invoke this method will lead to fragment not showing up.

Parameters:

fragmentAdapter: BrowseFragment.MainFragmentAdapter used by the current fragment.

public void showTitleView(boolean show)

Show or hide title view in BrowseFragment for fragments mapped to PageRow. Otherwise the request is ignored, in that case BrowseFragment is fully in control of showing/hiding title view.

When HeadersFragment is visible, BrowseFragment will hide search affordance view if there are other focusable rows above currently focused row.

Parameters:

show: Boolean indicating whether or not to show the title view.