LayoutInflaterFactory

Added in 1.1.0
Deprecated in 1.1.0

interface LayoutInflaterFactory


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

Summary

Public functions

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

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

Public functions

onCreateView

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

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
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.