Android APIs
public interface

LayoutInflaterFactory

android.support.v4.view.LayoutInflaterFactory

Class Overview

Used with LayoutInflaterCompat.setFactory(). Offers the same API as 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

public 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
parent The parent that the created view will be placed in; note that this may be null.
name Tag name to be inflated.
context The context the view is being created in.
attrs Inflation attributes as specified in XML file.
Returns
  • View Newly created view. Return null for the default behavior.