I used the code posted in this answer to try and set my preferences a different style (namely the font typeface and size), and it does indeed set the font properly. The problem with this code is, it extends the base Preference class, so I cannot create specific preferences (ListPreference
, CheckboxPreference
, etc.) and I'm stuck with basic preference objects, which I don't even know whether they have any proper use in terms of user interaction.
Now I could extend every Preference
class I use to include the code in CustomPreference
, but that seems like bad practice to me. Since there's no multiple inheritance in Java, is there any solution (perhaps any OO workaround) that can add this styling functionality to my CheckBoxPreferences
, ListPreferences
, PreferenceScreen
, etc.?
You could use a Util-type class with public static methods. You'd have to extend each preference class you use still, but you could defer things like
setStyleAlarmed
to the Utils class instead of having the same code in each custom preference class.