Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static interface

LayoutInflater.Factory

android.view.LayoutInflater.Factory
Known Indirect Subclasses

Summary

Public Methods
abstract View onCreateView ( String name, Context context, AttributeSet attrs)
Hook you can supply that is called when inflating from a LayoutInflater.

Public Methods

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

Added in API level 1

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.

Note that it is good practice to prefix these custom names with your package (i.e., com.coolcompany.apps) to avoid conflicts with system names.

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