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!