to top
Android APIs
public static interface

LayoutInflater.Factory2

implements LayoutInflater.Factory
android.view.LayoutInflater.Factory2
Known Indirect Subclasses

Summary

Public Methods
abstract View onCreateView(View parent, String name, Context context, AttributeSet attrs)
Version of onCreateView(String, Context, AttributeSet) that also supplies the parent that the view created view will be placed in.
[Expand]
Inherited Methods
From interface android.view.LayoutInflater.Factory

Public Methods

public abstract View onCreateView (View parent, String name, Context context, AttributeSet attrs)

Added in API level 11

Version of onCreateView(String, Context, AttributeSet) that also supplies the parent that the view created view will be placed in.

Parameters
parent The parent that the created view will be placed in; note that this may be null.
name Tag name to be inflated.
context The context the view is being created in.
attrs Inflation attributes as specified in XML file.
Returns
  • View Newly created view. Return null for the default behavior.