papalagi
papalagi

Reputation: 770

Use custom type face in PreferenceScreen

How to change type face of PreferenceScreen to use a custom font? Because PreferenceScreen is a final class, there is no way to extend it and set its type face in onBindView(View).

Upvotes: 1

Views: 542

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006839

You can attempt to iterate over all widgets in your PreferenceActivity, find those inheriting from TextView, and adjust their font. Bear in mind, though, that this will only affect the PreferenceActivity, not any dialogs those Preference objects display.

Upvotes: 1

Related Questions