public abstract class

XC_LayoutInflated

extends XCallback
java.lang.Object
   ↳ de.robv.android.xposed.callbacks.XCallback
     ↳ de.robv.android.xposed.callbacks.XC_LayoutInflated

Class Overview

Callback for hooking layouts. Such callbacks can be passed to XResources.hookLayout(int, XC_LayoutInflated) and its variants.

Summary

Nested Classes
class XC_LayoutInflated.LayoutInflatedParam Wraps information about the inflated layout. 
class XC_LayoutInflated.Unhook An object with which the callback can be removed. 
[Expand]
Inherited Constants
From class de.robv.android.xposed.callbacks.XCallback
[Expand]
Inherited Fields
From class de.robv.android.xposed.callbacks.XCallback
Public Constructors
XC_LayoutInflated()
Creates a new callback with default priority.
XC_LayoutInflated(int priority)
Creates a new callback with a specific priority.
Public Methods
abstract void handleLayoutInflated(XC_LayoutInflated.LayoutInflatedParam liparam)
This method is called when the hooked layout has been inflated.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Comparable

Public Constructors

public XC_LayoutInflated ()

Creates a new callback with default priority.

public XC_LayoutInflated (int priority)

Creates a new callback with a specific priority.

Parameters
priority See XCallback.priority.

Public Methods

public abstract void handleLayoutInflated (XC_LayoutInflated.LayoutInflatedParam liparam)

This method is called when the hooked layout has been inflated.

Parameters
liparam Information about the layout and the inflated view.
Throws
Throwable Everything the callback throws is caught and logged.