public
final
class
LayoutInflaterCompat
extends Object
java.lang.Object | |
↳ | android.support.v4.view.LayoutInflaterCompat |
Helper for accessing features in LayoutInflater
introduced after API level 4 in a backwards compatible fashion.
Public methods | |
---|---|
static
LayoutInflaterFactory
|
getFactory(LayoutInflater inflater)
Return the current |
static
void
|
setFactory(LayoutInflater inflater, LayoutInflaterFactory factory)
Attach a custom Factory interface for creating views while using this LayoutInflater. |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
LayoutInflaterFactory getFactory (LayoutInflater inflater)
Return the current LayoutInflaterFactory
(or null). This is
called on each element name. If the factory returns a View, add that
to the hierarchy. If it returns null, proceed to call onCreateView(name).
Parameters | |
---|---|
inflater |
LayoutInflater
|
Returns | |
---|---|
LayoutInflaterFactory |
The LayoutInflaterFactory associated with the
LayoutInflater . Will be null if the inflater does not
have a LayoutInflaterFactory but a raw LayoutInflater.Factory . |
See also:
void setFactory (LayoutInflater inflater, LayoutInflaterFactory factory)
Attach a custom Factory interface for creating views while using this LayoutInflater. This must not be null, and can only be set once; after setting, you can not change the factory.
Parameters | |
---|---|
inflater |
LayoutInflater
|
factory |
LayoutInflaterFactory
|