abouttreesummaryrefslogcommitdiff
path: root/res/layout/extra_keys_preference.xml
AgeCommit message (Collapse)AuthorFilesLines
2023-07-19Refactor: Use a PreferenceCategory for extra keysJules Aguillon1-5/+0
This removes the need for a layout definition and adds a title before the prefs. It's a prerequise for the custom keys preference.
2023-07-09Refactor: Don't define extra keys in xmlJules Aguillon1-0/+5
The current approach is hard to maintain, for example the last key "autofill" was not displayed. This implements a PreferenceGroup that contains the check boxes for every extra keys without involving listing the preferences in settings.xml. A custom layout is used to remove the 'title' text view. The list of extra keys is moved into the new class. 'ExtraKeyCheckBoxPreference' becomes a nested class.