Reputation: 4094
I have a BaseFragmentActivity that all my activities extend. I would like to createa PreferencesActivity and take advantage of Androids preferences.xml capabilities, but obviously I cannot extend both classes.
I know newer APIs provide the use of PreferenceFragments but I want to offer support to legacy Android versions (from 2.3 and above).
How can I make use of the Preferences structure and extend my own base class (which has a few functionalities I need for all activities).
Upvotes: 0
Views: 56