Most visited

Recently visited

FragmentContainer

public abstract class FragmentContainer
extends Object

java.lang.Object
   ↳ android.support.v4.app.FragmentContainer
Known Direct Subclasses


Callbacks to a Fragment's container.

Summary

Public constructors

FragmentContainer()

Public methods

abstract View onFindViewById(int id)

Return the view with the given resource ID.

abstract boolean onHasView()

Return true if the container holds any view.

Inherited methods

From class java.lang.Object

Public constructors

FragmentContainer

FragmentContainer ()

Public methods

onFindViewById

View onFindViewById (int id)

Return the view with the given resource ID. May return null if the view is not a child of this container.

Parameters
id int
Returns
View

onHasView

boolean onHasView ()

Return true if the container holds any view.

Returns
boolean

Hooray!