Tagged Questions

173
votes
5answers
43k views

'Must Override a Superclass Method' Errors after importing a project into Eclipse

Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
1
vote
1answer
85 views

Android: reason for calling superclass?

I'm looking at the Notepad tutorial from the Android developer's site. I have a question about overridden functions calling the super-class of activities. For example, public class Notepadv3 extends ...
1
vote
1answer
89 views

Need a suitable Android pattern

I'm working on an Android application and am faced with a refactoring issue; most of my activities need certain notification abilities, i.e. showing a Toast message. This is handled by a superclass ...
0
votes
1answer
35 views

back to previous activity

I try to go to previous Activity (Activity A) but have problem. Command to this get inside Activity B and I wont to go back to B: A: if(...) { B.staticF(); } B: static void staticF() { ...
0
votes
1answer
232 views

Android Class.getGenericSuperclass returns java.lang.Object

I am trying to read generic info from a class. Here is what I am doing: first of all I have a class EntityHelper. Somewhere inside it I want to see what is actually that T. I know this can be done ...