afterHookMethod
fun Class<*>.afterHookMethod(methodName: String, vararg argTypes: Class<*>, callback: (HookParam) -> Unit): List<XposedInterface.HookHandle>
为指定类中同名的全部方法批量创建 after hook。
fun String.afterHookMethod(methodName: String, vararg argTypes: Class<*>, classLoader: ClassLoader = HookClassLoader.currentOrDefault(), callback: (HookParam) -> Unit): List<XposedInterface.HookHandle>
按类名为同名的全部方法批量创建 after hook。