Some basics for LayoutInflater-
- LayoutInflater is used to manipulate Android screen using predefined XML layouts.
This class is used to instantiate layout XML file into its corresponding View objects.
It is never used directly. Instead,
- use
getLayoutInflater()
or getSystemService(String)
to retrieve a standard LayoutInflater instance that is already hooked up to the current context.