public interface

IXposedHookInitPackageResources

de.robv.android.xposed.IXposedHookInitPackageResources
Known Indirect Subclasses

Class Overview

Get notified when the resources for an app are initialized. In handleInitPackageResources(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.

Summary

Public Methods
abstract void handleInitPackageResources(XC_InitPackageResources.InitPackageResourcesParam resparam)
This method is called when resources for an app are being initialized.

Public Methods

public abstract void handleInitPackageResources (XC_InitPackageResources.InitPackageResourcesParam resparam)

This method is called when resources for an app are being initialized. Modules can call special methods of the XResources class in order to replace resources.

Parameters
resparam Information about the resources.
Throws
Throwable Everything the callback throws is caught and logged.