LayoutInflaterFactory
public interface LayoutInflaterFactory
Used with LayoutInflaterCompat.setFactory(). Offers the same API as android.view.LayoutInflater.Factory2.
Summary
Public methods |
|
|---|---|
abstract View |
Hook you can supply that is called when inflating from a LayoutInflater. |
Public methods
abstract ViewonCreateView(
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. |