[ Web Proxy ]
URL:
Viewing: https://developer.android.com/reference/android/view/LayoutInflater.Factory [Back]  [Original]

LayoutInflater.Factory  |  API reference  |  Android Developers Skip to main content
Essentials Design & Plan Develop Google Play Blog
Search:
Android Studio
Android Developers [Android Developers]
Stay organized with collections Save and categorize content based on your preferences.
Added in API level 1

LayoutInflater.Factory


public static interface LayoutInflater.Factory

android.view.LayoutInflater.Factory


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

onCreateView

Added in API level 1
public abstract View onCreateView (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.

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 String: Tag name to be inflated.
This value cannot be null.

context Context: The context the view is being created in.
This value cannot be null.

attrs AttributeSet: Inflation attributes as specified in XML file.
This value cannot be null.

Returns
View View Newly created view. Return null for the default behavior.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2026-08-03 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-03 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page