- findAndHookConstructor(Class<?>, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor and hook it.
- findAndHookConstructor(String, ClassLoader, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor and hook it.
- findAndHookMethod(Class<?>, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method and hook it.
- findAndHookMethod(String, ClassLoader, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method and hook it.
- findClass(String, ClassLoader) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a class with the specified class loader.
- findClassIfExists(String, ClassLoader) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a class if it exists.
- findConstructorBestMatch(Class<?>, Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor in a class and set it to accessible.
- findConstructorBestMatch(Class<?>, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor in a class and set it to accessible.
- findConstructorBestMatch(Class<?>, Class<?>[], Object[]) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor in a class and set it to accessible.
- findConstructorExact(Class<?>, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor of a class and set it to accessible.
- findConstructorExact(String, ClassLoader, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor of a class and set it to accessible.
- findConstructorExact(Class<?>, Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a constructor of a class and set it to accessible.
- findConstructorExactIfExists(Class<?>, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a constructor if it exists.
- findConstructorExactIfExists(String, ClassLoader, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a constructor if it exists.
- findField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a field in a class and set it to accessible.
- findFieldIfExists(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a field if it exists.
- findFirstFieldByExactType(Class<?>, Class<?>) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the first field of the given type in a class.
- findMethodBestMatch(Class<?>, String, Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodBestMatch(Class<?>, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodBestMatch(Class<?>, String, Class<?>[], Object[]) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodExact(Class<?>, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodExact(String, ClassLoader, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodExact(Class<?>, String, Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up a method in a class and set it to accessible.
- findMethodExactIfExists(Class<?>, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a method if it exists.
- findMethodExactIfExists(String, ClassLoader, String, Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Look up and return a method if it exists.
- findMethodsByExactParameters(Class<?>, Class<?>, Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns an array of all methods declared/overridden in a class with the specified parameter types.
- getAdditionalInstanceField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
- getAdditionalStaticField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
- getAdditionalStaticField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
- getArg(int) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- getArgs() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- getBooleanField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a boolean
field in the given object instance.
- getByteField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a byte
field in the given object instance.
- getCallback() - Method in interface de.robv.android.xposed.callbacks.IXUnhook
-
Returns the callback that has been registered.
- getCallback() - Method in class de.robv.android.xposed.callbacks.XC_LayoutInflated.Unhook
-
- getCallback() - Method in class de.robv.android.xposed.XC_MethodHook.Unhook
-
- getCharField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a char
field in the given object instance.
- getClassesAsArray(Class<?>...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns an array of the given classes.
- getDoubleField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a double
field in the given object instance.
- getExtra() - Method in class de.robv.android.xposed.callbacks.XCallback.Param
-
This can be used to store any data for the scope of the callback.
- getExtra(String) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- getFirstParameterIndexByType(Member, Class<?>) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the index of the first parameter declared with the given type.
- getFloatField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a float
field in the given object instance.
- getHookedMethod() - Method in class de.robv.android.xposed.XC_MethodHook.Unhook
-
Returns the method/constructor that has been hooked.
- getId() - Method in class de.robv.android.xposed.callbacks.XC_LayoutInflated.Unhook
-
Returns the resource ID of the hooked layout.
- getIntField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of an int
field in the given object instance.
- getLongField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a long
field in the given object instance.
- getMD5Sum(String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the lowercase hex string representation of a file's MD5 hash sum.
- getMethodDepth(String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the current depth counter for the given method.
- getObjectExtra(String) - Method in class de.robv.android.xposed.callbacks.XCallback.Param
-
- getObjectField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of an object field in the given object instance.
- getOrigin() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- getParameterIndexByType(Member, Class<?>) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the index of the parameter declared with the given type, ensuring that there is exactly one such parameter.
- getParameterTypes(Object...) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns an array with the classes of the given objects.
- getResult() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
Returns the result of the method call.
- getResultOrThrowable() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
Returns the result of the method call, or throws the Throwable caused by it.
- getShortField(Object, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a short
field in the given object instance.
- getStaticBooleanField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a static boolean
field in the given class.
- getStaticByteField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static byte
field in the given class.
- getStaticCharField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static char
field in the given class.
- getStaticDoubleField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static double
field in the given class.
- getStaticFloatField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static float
field in the given class.
- getStaticIntField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static int
field in the given class.
- getStaticLongField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static long
field in the given class.
- getStaticObjectField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Returns the value of a static object field in the given class.
- getStaticShortField(Class<?>, String) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static short
field in the given class.
- getSurroundingThis(Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
For inner classes, returns the surrounding instance, i.e.
- getThis() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- getThrowable() - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
Returns the Throwable
thrown by the method, or null
.
- getXposedVersion() - Static method in class de.robv.android.xposed.XposedBridge
-
Returns the currently installed version of the Xposed framework.
- setAdditionalInstanceField(Object, String, Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
Attaches any value to an object instance.
- setAdditionalStaticField(Object, String, Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
- setAdditionalStaticField(Class<?>, String, Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
- setArg(int, U) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- setBooleanField(Object, String, boolean) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a boolean
field in the given object instance.
- setByteField(Object, String, byte) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a byte
field in the given object instance.
- setCharField(Object, String, char) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a char
field in the given object instance.
- setDoubleField(Object, String, double) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a double
field in the given object instance.
- setExtra(String, U) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
- setFloatField(Object, String, float) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a float
field in the given object instance.
- setIntField(Object, String, int) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of an int
field in the given object instance.
- setLongField(Object, String, long) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a long
field in the given object instance.
- setObjectExtra(String, Object) - Method in class de.robv.android.xposed.callbacks.XCallback.Param
-
Stores any object for the scope of the callback.
- setObjectField(Object, String, Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of an object field in the given object instance.
- setResult(Object) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
Modify the result of the method call.
- setShortField(Object, String, short) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a short
field in the given object instance.
- setStaticBooleanField(Class<?>, String, boolean) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static boolean
field in the given class.
- setStaticByteField(Class<?>, String, byte) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static byte
field in the given class.
- setStaticCharField(Class<?>, String, char) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static char
field in the given class.
- setStaticDoubleField(Class<?>, String, double) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static double
field in the given class.
- setStaticFloatField(Class<?>, String, float) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static float
field in the given class.
- setStaticIntField(Class<?>, String, int) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static int
field in the given class.
- setStaticLongField(Class<?>, String, long) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static long
field in the given class.
- setStaticObjectField(Class<?>, String, Object) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static object field in the given class.
- setStaticShortField(Class<?>, String, short) - Static method in class de.robv.android.xposed.XposedHelpers
-
Sets the value of a static short
field in the given class.
- setThrowable(Throwable) - Method in class de.robv.android.xposed.XC_MethodHook.MethodHookParam
-
Modify the exception thrown of the method call.
- startsSystemServer - Variable in class de.robv.android.xposed.IXposedHookZygoteInit.StartupParam
-
Always true
on 32-bit ROMs.
- XC_InitPackageResources - Class in de.robv.android.xposed.callbacks
-
- XC_InitPackageResources() - Constructor for class de.robv.android.xposed.callbacks.XC_InitPackageResources
-
Creates a new callback with default priority.
- XC_InitPackageResources(int) - Constructor for class de.robv.android.xposed.callbacks.XC_InitPackageResources
-
Creates a new callback with a specific priority.
- XC_InitPackageResources.InitPackageResourcesParam - Class in de.robv.android.xposed.callbacks
-
Wraps information about the resources being initialized.
- XC_LayoutInflated - Class in de.robv.android.xposed.callbacks
-
Callback for hooking layouts
- XC_LayoutInflated() - Constructor for class de.robv.android.xposed.callbacks.XC_LayoutInflated
-
Creates a new callback with default priority.
- XC_LayoutInflated(int) - Constructor for class de.robv.android.xposed.callbacks.XC_LayoutInflated
-
Creates a new callback with a specific priority.
- XC_LayoutInflated.LayoutInflatedParam - Class in de.robv.android.xposed.callbacks
-
Wraps information about the inflated layout.
- XC_LayoutInflated.Unhook - Class in de.robv.android.xposed.callbacks
-
An object with which the callback can be removed.
- XC_LoadPackage - Class in de.robv.android.xposed.callbacks
-
- XC_LoadPackage() - Constructor for class de.robv.android.xposed.callbacks.XC_LoadPackage
-
Creates a new callback with default priority.
- XC_LoadPackage(int) - Constructor for class de.robv.android.xposed.callbacks.XC_LoadPackage
-
Creates a new callback with a specific priority.
- XC_LoadPackage.LoadPackageParam - Class in de.robv.android.xposed.callbacks
-
Wraps information about the app being loaded.
- XC_MethodHook - Class in de.robv.android.xposed
-
Callback class for method hooks.
- XC_MethodHook() - Constructor for class de.robv.android.xposed.XC_MethodHook
-
Creates a new callback with default priority.
- XC_MethodHook(int) - Constructor for class de.robv.android.xposed.XC_MethodHook
-
Creates a new callback with a specific priority.
- XC_MethodHook.MethodHookParam<T extends java.lang.reflect.Executable> - Class in de.robv.android.xposed
-
Wraps information about the method call and allows to influence it.
- XC_MethodHook.Unhook - Class in de.robv.android.xposed
-
An object with which the method/constructor can be unhooked.
- XC_MethodReplacement - Class in de.robv.android.xposed
-
A special case of
XC_MethodHook
which completely replaces the original method.
- XCallback - Class in de.robv.android.xposed.callbacks
-
Base class for Xposed callbacks.
- XCallback() - Constructor for class de.robv.android.xposed.callbacks.XCallback
-
- XCallback(int) - Constructor for class de.robv.android.xposed.callbacks.XCallback
-
- XCallback.Param - Class in de.robv.android.xposed.callbacks
-
Base class for Xposed callback parameters.
- XposedBridge - Class in de.robv.android.xposed
-
- XposedBridge() - Constructor for class de.robv.android.xposed.XposedBridge
-
- XposedHelpers - Class in de.robv.android.xposed
-
Helpers that simplify hooking and calling methods/constructors, getting and settings fields, ...
- XposedHelpers.ClassNotFoundError - Error in de.robv.android.xposed
-
Thrown when a class loader is unable to find a class.
- XposedHelpers.InvocationTargetError - Error in de.robv.android.xposed
-
This class provides a wrapper for an exception thrown by a method invocation.