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 which extends Activity
Activity
-NotificationActivity
--MyActivityA
--MyActivityB
and so on. I then decided to refactor two of my activities which make use of a Spinner which is populated by a database cursor. The hierarchy now looks like this:
Activity
-MyNotificationActivity
--MyActivityA
--MyActivityB
--MySpinnerActivity (sets up Spinner and Cursor)
---MySpinnerActivityA
---MySpinnerActivityB
The problem I am facing now is this - I am writing a new Activity class which will also make use of a database Cursor but to populate a ListView. I would like to extend ListView to make use of built in Android List management, but I also need access to the Cursor set up methods and Notification methods, which already exist in my class hierarchy.
I'm really keen to avoid code dupication. Any suggestions?
Cheers, Barry