[android-developers] Re: 1.5 release - DexClassLoader issue

2012-10-10 Thread Lindley
Sorry for the gravedig, but I have a related question. Let's say we have the aforementioned situation: mystuff.dex has MyClass and MyOtherClass newstuff.dex has NewClass and MyOtherClass FancyClassLoader knows about mystuff.dex and newstuff.dex FancyClassLoader uses MyOtherClass from

[android-developers] Re: 1.5 release - DexClassLoader issue

2009-04-17 Thread Eborix13
Hi Fadden, My question was not: why can't I use 2 classes loaded with different class loaders. My question has to do with the way Android implements the dynamical class loading thing. It won't let you load a class using this.getClass().getClassLoader() as the parent parameter in the

[android-developers] Re: 1.5 release - DexClassLoader issue

2009-04-17 Thread fadden
On Apr 17, 12:08 am, Eborix13 ebori...@yahoo.com wrote:   My question was not: why can't I use 2 classes loaded with different class loaders. My question has to do with the way Android implements the dynamical class loading thing. It won't let you load a class using

[android-developers] Re: 1.5 release - DexClassLoader issue

2009-04-16 Thread fadden
Most of what you're describing falls into the category of, that's how class loaders work in the Java programming environment. If you create a class loader, and load a class called MyClass from it, you can't trivially refer to MyClass because the current class' loader can't resolve it. You have