8

主要目标是用我自己的实现覆盖 Android 系统类(活动、视图等)。

http://android-developers.blogspot.com/2011/07/custom-class-loading-in-dalvik.html

ClassLoader 用于实现自定义类加载,加载非系统类(custom class)的工作。

但是当我尝试用我的实现加载 Activity 时 - 它没有加载,因为 ClassLoader 已经在它的缓存中有这个类:

/**
 * Returns the class with the specified name if it has already been loaded
 * by the virtual machine or {@code null} if it has not yet been loaded.
 *
 * @param className
 *            the name of the class to look for.
 * @return the {@code Class} object or {@code null} if the requested class
 *         has not been loaded.
 */
protected final Class<?> findLoadedClass(String className) {
    ClassLoader loader;
    if (this == BootClassLoader.getInstance())
        loader = null;
    else
        loader = this;
    return VMClassLoader.findLoadedClass(loader, className);
}

如何更改类加载器以注入我自己的类而不是系统?

4

2 回答 2

3

我从博客文章中找到了这个解决方案。我知道发布链接是违反堆栈溢出策略的,但文本太大而无法传输。

这个想法是编写一些覆盖低级类加载机制的 C 代码,从而覆盖方法的执行方式。我希望这可能对某人有所帮助。

于 2015-10-10T07:53:05.950 回答
0

一个类一旦被 RootClassLoader 加载,就不能再次加载,除非先卸载。但是,卸载类是一个由 DVM 自动管理的过程。我也被同样的问题困扰。

于 2013-03-31T19:38:16.467 回答