replaceIntercept
fun XposedInterface.HookHandle.replaceIntercept(callback: (XposedInterface.Chain) -> Any?): XposedInterface.HookHandle
用一个 intercept 风格的 lambda 原子替换当前 hook,返回新 handle。
适合需要直接操作 XposedInterface.Chain 的场景。语义与 HookFactory.intercept 完全一致。 行为约束与 replaceWith 一致:保留 executable、priority、exceptionMode、hook ID;旧 handle 失效。
Parameters
callback
接收 XposedInterface.Chain 的 around 回调