LayoutInflaterFactory

Added in 1.1.0
Deprecated in 1.1.0

public interface LayoutInflaterFactory


Used with LayoutInflaterCompat.setFactory(). Offers the same API as android.view.LayoutInflater.Factory2.

Summary

Public methods

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

Hook you can supply that is called when inflating from a LayoutInflater.

Public methods

onCreateView

Added in 1.1.0
Deprecated in 1.1.0
abstract View onCreateView(
    View parent,
    String name,
    Context context,
    AttributeSet attrs
)

Hook you can supply that is called when inflating from a LayoutInflater. You can use this to customize the tag names available in your XML layout files.

Parameters
View parent

The parent that the created view will be placed in; note that this may be null.

String name

Tag name to be inflated.

Context context

The context the view is being created in.

AttributeSet attrs

Inflation attributes as specified in XML file.

Returns
View

View Newly created view. Return null for the default behavior.