Android APIs
public class

DetailsFragment

extends Fragment
java.lang.Object
   ↳ android.app.Fragment
     ↳ android.support.v17.leanback.app.DetailsFragment
Known Direct Subclasses

Class Overview

Wrapper fragment for leanback details screens.

Summary

[Expand]
Inherited XML Attributes
From class android.app.Fragment
[Expand]
Inherited Constants
From interface android.content.ComponentCallbacks2
Public Constructors
DetailsFragment()
Public Methods
ObjectAdapter getAdapter()
Returns the list of rows.
OnItemClickedListener getOnItemClickedListener()
This method is deprecated. Use getOnItemViewClickedListener()
OnItemViewClickedListener getOnItemViewClickedListener()
Returns the item Clicked listener.
void onCreate(Bundle savedInstanceState)
Called to do initial creation of a fragment.
View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
Called to have the fragment instantiate its user interface view.
void onStart()
Called when the Fragment is visible to the user.
void setAdapter(ObjectAdapter adapter)
Sets the list of rows for the fragment.
void setOnItemClickedListener(OnItemClickedListener listener)
void setOnItemSelectedListener(OnItemSelectedListener listener)
void setOnItemViewClickedListener(OnItemViewClickedListener listener)
Sets an item Clicked listener.
void setOnItemViewSelectedListener(OnItemViewSelectedListener listener)
Sets an item selection listener.
[Expand]
Inherited Methods
From class android.app.Fragment
From class java.lang.Object
From interface android.content.ComponentCallbacks
From interface android.content.ComponentCallbacks2
From interface android.view.View.OnCreateContextMenuListener

Public Constructors

public DetailsFragment ()

Public Methods

public ObjectAdapter getAdapter ()

Returns the list of rows.

public OnItemClickedListener getOnItemClickedListener ()

This method is deprecated.
Use getOnItemViewClickedListener()

Returns the item Clicked listener.

public OnItemViewClickedListener getOnItemViewClickedListener ()

Returns the item Clicked listener.

public void onCreate (Bundle savedInstanceState)

Called to do initial creation of a fragment. This is called after onAttach(Activity) and before onCreateView(LayoutInflater, ViewGroup, Bundle).

Note that this can be called while the fragment's activity is still in the process of being created. As such, you can not rely on things like the activity's content view hierarchy being initialized at this point. If you want to do work once the activity itself is created, see onActivityCreated(Bundle).

Parameters
savedInstanceState If the fragment is being re-created from a previous saved state, this is the state.

public View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)

Called to have the fragment instantiate its user interface view. This is optional, and non-graphical fragments can return null (which is the default implementation). This will be called between onCreate(Bundle) and onActivityCreated(Bundle).

If you return a View from here, you will later be called in onDestroyView() when the view is being released.

Parameters
inflater The LayoutInflater object that can be used to inflate any views in the fragment,
container If non-null, this is the parent view that the fragment's UI should be attached to. The fragment should not add the view itself, but this can be used to generate the LayoutParams of the view.
savedInstanceState If non-null, this fragment is being re-constructed from a previous saved state as given here.
Returns
  • Return the View for the fragment's UI, or null.

public void onStart ()

Called when the Fragment is visible to the user. This is generally tied to Activity.onStart of the containing Activity's lifecycle.

public void setAdapter (ObjectAdapter adapter)

Sets the list of rows for the fragment.

public void setOnItemClickedListener (OnItemClickedListener listener)

This method is deprecated.
Use setOnItemViewClickedListener(OnItemViewClickedListener)

Sets an item Clicked listener.

public void setOnItemSelectedListener (OnItemSelectedListener listener)

This method is deprecated.
Use setOnItemViewSelectedListener(OnItemViewSelectedListener)

Sets an item selection listener.

public void setOnItemViewClickedListener (OnItemViewClickedListener listener)

Sets an item Clicked listener.

public void setOnItemViewSelectedListener (OnItemViewSelectedListener listener)

Sets an item selection listener.