Most visited

Recently visited

Added in API level 11

LayoutInflater.Factory2

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)

版本 onCreateView(String, Context, AttributeSet)也提供视图创建的视图将被放置的父级。

Inherited methods

From interface android.view.LayoutInflater.Factory

Public methods

onCreateView

Added in API level 11
View onCreateView (View parent, 
                String name, 
                Context context, 
                AttributeSet attrs)

版本 onCreateView(String, Context, AttributeSet) ,也提供视图创建的视图将被放置的父级。

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

Hooray!