Skip to content Skip to sidebar Skip to footer

How Can I Instantiate A Member Class Through Reflection On Android

I have a saving/loading framework that is supposed to save arbitrary object graphs. This includes instances of non-static nested classes. Nested classes require are owned by the i

Solution 1:

Okay, turns out I was barking up the wrong tree. The method I've outlined works perfectly well on Android just as well as anywhere else. The problem was that the class I was trying to instantiate in this case was a static internal class. So, while it was a member class, it didn't have a reference to its outer class. I just have to check if (!Modifier.isStatic(objectClass.getModifiers())) before looking for a synthetic constructor/field.


Post a Comment for "How Can I Instantiate A Member Class Through Reflection On Android"