public interface IXposedHookInitPackageResources
handleInitPackageResources(de.robv.android.xposed.callbacks.XC_InitPackageResources.InitPackageResourcesParam), resource replacements can be created.
This interface should be implemented by the module's main class. Xposed will take care of registering it as a callback automatically.
| Modifier and Type | Interface and Description |
|---|---|
static class |
IXposedHookInitPackageResources.Wrapper |
| Modifier and Type | Method and Description |
|---|---|
void |
handleInitPackageResources(XC_InitPackageResources.InitPackageResourcesParam resparam)
This method is called when resources for an app are being initialized.
|
void handleInitPackageResources(XC_InitPackageResources.InitPackageResourcesParam resparam) throws java.lang.Throwable
XResources class in order to replace resources.resparam - Information about the resources.java.lang.Throwable - Everything the callback throws is caught and logged.