LayoutInflaterFactory
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
onCreateView
abstract 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. |
Return |
View! |
View Newly created view. Return null for the default behavior. |