Custom Mapview Throwing Nosuchmethodexception, But It's There!
I'm trying to implement a custom MapView. Inside my MapActivity (named mainmap) I have an inner class which extends MapView: private class Lmapview extends MapView{ public Lma
Solution 1:
You cannot instantiate an inner non-static class before you have a super class object. Because of this you have to make the inner class static, or move it to a separate class.
Post a Comment for "Custom Mapview Throwing Nosuchmethodexception, But It's There!"