- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 xposed 开发的新手,我被卡住了:
我 hook 一个方法,检查一些东西,然后我想决定是用 return true;
替换它还是让它运行。但是我还没有找到为 replaceHookedMethod(..) 设置条件的可能性
我知道我可以在 afterHookedMethod 或 beforeHookedMethod 中设置返回值,但这不会阻止该方法运行。
这是我的简短示例:
private static boolean flag;
...
findAndHookMethod(Activity.class, "onKeyDown", int.class, KeyEvent.class, new XC_MethodHook() {
@Override
protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
//check some stuff here and set flag = true or flag = false
}
protected Object replaceHookedMethod(MethodHookParam param) throws Throwable {
//this methode should only be called if the flag is true
return true;
}
};
有什么想法/建议吗?提前致谢!
最佳答案
您可以使用 XC_MethodHook
和 beforeHookedMethod(..)
简单地实现您想要的:
如果你在beforeHookedMethod 中调用
.param.setResult(..)
或param.setThrowable(..)
,你原来hook 的方法将不会被执行(..)
It's not too hard to guess that the are executed before/after the original method. You can use the "before" method to evaluate/manipulate the parameters of the method call (via param.args) and even prevent the call to the original method (sending your own result). https://github.com/rovo89/XposedBridge/wiki/Development-tutorial
我检查了XC_MethodReplacement的源代码它证实了我在这个答案开头所做的陈述。它在内部扩展 XC_methodHook 并使用以下实现:
protected final void beforeHookedMethod(MethodHookParam param) throws Throwable {
try {
Object result = replaceHookedMethod(param);
param.setResult(result);
} catch (Throwable t) {
param.setThrowable(t);
}
}
因此,如果要替换方法,只需检查 beforeHookedMethod 中的条件并设置结果即可。
关于java - xposed方法替换replaceHookedMethod有条件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38101335/
我是一名优秀的程序员,十分优秀!