Giter Club home page Giter Club logo

Comments (4)

openproject avatar openproject commented on August 16, 2024

看代码里有很详细的注释文档

from whale.

csrbzhb avatar csrbzhb commented on August 16, 2024

写一个demo吧。这让我一个刚入门的情何以堪。

from whale.

fettdrac avatar fettdrac commented on August 16, 2024

这个的hook方式跟你写Xposed模块是几乎一样的(it is similar to the way in which you are writing the Xposed module)
这里给个常用的实例方法整体替换示例,如果喜欢用XposedHelpers类也可以

public void hookMethod(Method oldMethod, final Method newMethod) {
        XposedBridge.hookMethod(oldMethod,
                new XC_MethodReplacement() {
                    @Override
                    protected Object replaceHookedMethod(MethodHookParam param) throws Throwable {
                        Log.i(TAG, "调用替换方法");//a meaning less log to prevent crash(replacement method is too short?)
                        return newMethod.invoke(param.thisObject, param.args);
                    }
                });
    }

看看XposedBridge类的实现就知道怎么回事了

from whale.

WindySha avatar WindySha commented on August 16, 2024

Demo :
xposed-hook-based-on-whale

from whale.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.