程序包 net_62v.external

接口 IMundoProcessCallback


public interface IMundoProcessCallback
Process callback interface, you can implement this interface for process lifecycle callback
版本:
1.0
作者:
king@62v.net
  • 方法概要

    修饰符和类型
    方法
    说明
    default void
    onCreate(String packageName, String processName)
    The default implementation of the process callback
    default void
    onCreate(String packageName, String processName, String userName)
    Callback after the internal application node onCreate
    You can use the xposed callback here, and do something related to modifying el application
    default void
    Callback after the environment prepared, and you can modify the system service
    on this function.
  • 方法详细资料

    • onCreate

      default void onCreate(String packageName, String processName)
      The default implementation of the process callback
      参数:
      packageName - See the method onCreate(String, String, String)
      processName - See the method onCreate(String, String, String)
    • onCreate

      default void onCreate(String packageName, String processName, String userName)
      Callback after the internal application node onCreate
      You can use the xposed callback here, and do something related to modifying el application
      参数:
      packageName - package name of the internal application
      processName - process name of current running application
      userName - the user name of current running application
    • onInitialized

      default void onInitialized()
      Callback after the environment prepared, and you can modify the system service
      on this function.
      This callback will only be called on the main UI thread,
      Do not put any time consumption tasks on this callback!