Hi
I am trying to extend my main entry point with a superclass (so I don’t have to override onCreateOptionsMenu in each activity i got for example) but for some reason it seems I am not allowed to do this with the class I got set as my main entry point for my application in android.
For example: MainClass extends Activity works fine but MainClass extends mySuperClass where mySuperClass extends Activity does not work – anyone got any idea if I am doing something wrong or if this is an android specific issue?
Thanks for any help or input!
All Android Activity classes MUST extend an Activity base class. Your superclass definition must be missing something: post the class definition.