added in version 24.1.0
belongs to Maven artifact com.android.support:support-fragment:28.0.0-alpha1
belongs to Maven artifact com.android.support:support-fragment:28.0.0-alpha1
FragmentContainer
public
abstract
class
FragmentContainer
extends Object
java.lang.Object | |
↳ | android.support.v4.app.FragmentContainer |
![]() |
Callbacks to a Fragment
's container.
Summary
Public constructors | |
---|---|
FragmentContainer()
|
Public methods | |
---|---|
Fragment
|
instantiate(Context context, String className, Bundle arguments)
Creates an instance of the specified fragment, can be overridden to construct fragments with dependencies, or change the fragment being constructed. |
abstract
View
|
onFindViewById(int id)
Return the view with the given resource ID. |
abstract
boolean
|
onHasView()
Return |
Inherited methods | |
---|---|
![]()
java.lang.Object
|
Public constructors
Public methods
instantiate
added in version 26.1.0
Fragment instantiate (Context context, String className, Bundle arguments)
Creates an instance of the specified fragment, can be overridden to construct fragments
with dependencies, or change the fragment being constructed. By default just calls
instantiate(Context, String, Bundle)
.
Parameters | |
---|---|
context |
Context |
className |
String |
arguments |
Bundle |
Returns | |
---|---|
Fragment |
onFindViewById
added in version 24.1.0