I want the change the look of the preferences screen for an app I am working on. On some phones the preferences are very translucent and it is quite difficult to read the prefe
The basic things are:
preferenceScreenStyle
, preferenceCategoryStyle
etc)themes.xml
). For instance in styles.xml they define the Preference.Category
and Preference.PreferenceScreen
styles.<activity android:theme="@style/CustomTheme"...
If you want to inherit the default Android styles and then just override some of them, then add parent="@android:style/Theme"
to the opening <style...
tag of your theme.
Take a look at Applying Styles and Themes for more info.