mirror of
https://github.com/gsantner/dandelion
synced 2025-12-12 23:31:10 +01:00
Added icons to the settings
Chaged some icons Moved Contacts up one in Settings
This commit is contained in:
parent
30ca937461
commit
f89f21f979
17 changed files with 279 additions and 19 deletions
|
|
@ -8,12 +8,14 @@
|
|||
<Preference
|
||||
android:key="@string/pref_key__cat_themes"
|
||||
android:title="@string/pref_title__themes"
|
||||
android:summary="@string/pref_desc__themes" />
|
||||
android:summary="@string/pref_desc__themes"
|
||||
android:icon="@drawable/ic_color_lens_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__cat_nav_slider"
|
||||
android:summary="@string/pref_desc__sub_nav_slider"
|
||||
android:title="@string/pref_title__sub_nav_slider" />
|
||||
android:title="@string/pref_title__sub_nav_slider"
|
||||
android:icon="@drawable/ic_visibility_on_black_24px"/>
|
||||
|
||||
<ListPreference
|
||||
android:dialogTitle="@string/pref_title__font_size"
|
||||
|
|
@ -21,31 +23,36 @@
|
|||
android:entryValues="@array/pref_entries_values__font_size"
|
||||
android:key="@string/pref_key__font_size"
|
||||
android:summary="%s"
|
||||
android:title="@string/pref_title__font_size"/>
|
||||
android:title="@string/pref_title__font_size"
|
||||
android:icon="@drawable/ic_format_size_black_24px"/>
|
||||
|
||||
<com.github.dfa.diaspora_android.ui.theme.ThemedCheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:key="@string/pref_key__intellihide_toolbars"
|
||||
android:summary="@string/pref_desc__intellihide_toolbars"
|
||||
android:title="@string/pref_title__intellihide_toolbars"/>
|
||||
android:title="@string/pref_title__intellihide_toolbars"
|
||||
android:icon="@drawable/ic_zoom_out_map_black_24px"/>
|
||||
|
||||
<com.github.dfa.diaspora_android.ui.theme.ThemedCheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="@string/pref_key__extended_notifications"
|
||||
android:summary="@string/pref_desc__extended_notifications"
|
||||
android:title="@string/pref_title__extended_notifications"/>
|
||||
android:title="@string/pref_title__extended_notifications"
|
||||
android:icon="@drawable/ic_notifications_black_24px"/>
|
||||
|
||||
<com.github.dfa.diaspora_android.ui.theme.ThemedCheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:key="@string/pref_key__append_shared_via_app"
|
||||
android:summary="@string/pref_desc__append_shared_via_app"
|
||||
android:title="@string/pref_title__append_shared_via_app"/>
|
||||
android:title="@string/pref_title__append_shared_via_app"
|
||||
android:icon="@drawable/ic_thumb_up_black_24px"/>
|
||||
|
||||
<com.github.dfa.diaspora_android.ui.theme.ThemedCheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:key="@string/pref_key__chrome_custom_tabs_enabled"
|
||||
android:summary="@string/pref_desc__chrome_custom_tabs_enabled"
|
||||
android:title="@string/pref_title__chrome_custom_tabs_enabled"/>
|
||||
android:title="@string/pref_title__chrome_custom_tabs_enabled"
|
||||
android:icon="@drawable/ic_open_in_new_black_24px"/>
|
||||
|
||||
</com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory>
|
||||
|
||||
|
|
@ -56,22 +63,26 @@
|
|||
<Preference
|
||||
android:key="@string/pref_key__personal_settings"
|
||||
android:summary="@string/pref_desc__personal_settings"
|
||||
android:title="@string/pref_title__personal_settings"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__manage_tags"
|
||||
android:summary="@string/pref_desc__manage_tags"
|
||||
android:title="@string/pref_title__manage_tags"/>
|
||||
android:title="@string/pref_title__personal_settings"
|
||||
android:icon="@drawable/ic_person_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__manage_contacts"
|
||||
android:summary="@string/pref_desc__manage_contacts"
|
||||
android:title="@string/pref_title__manage_contacts"/>
|
||||
android:title="@string/pref_title__manage_contacts"
|
||||
android:icon="@drawable/ic_people_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__manage_tags"
|
||||
android:summary="@string/pref_desc__manage_tags"
|
||||
android:title="@string/pref_title__manage_tags"
|
||||
android:icon="@drawable/ic_format_list_bulleted_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__change_account"
|
||||
android:summary="@string/pref_desc__change_account"
|
||||
android:title="@string/pref_title__change_account"/>
|
||||
android:title="@string/pref_title__change_account"
|
||||
android:icon="@drawable/ic_arrow_back_black_24px"/>
|
||||
</com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory>
|
||||
|
||||
<!-- Networking -->
|
||||
|
|
@ -82,17 +93,20 @@
|
|||
android:defaultValue="true"
|
||||
android:key="@string/pref_key__load_images"
|
||||
android:summary="@string/pref_desc__load_images"
|
||||
android:title="@string/pref_title__load_images"/>
|
||||
android:title="@string/pref_title__load_images"
|
||||
android:icon="@drawable/ic_file_download_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__clear_cache"
|
||||
android:summary="@string/pref_desc__clear_cache"
|
||||
android:title="@string/pref_title__clear_cache"/>
|
||||
android:title="@string/pref_title__clear_cache"
|
||||
android:icon="@drawable/ic_clear_black_24px"/>
|
||||
|
||||
<Preference
|
||||
android:key="@string/pref_key__cat_proxy"
|
||||
android:summary="@string/pref_desc__sub_proxy"
|
||||
android:title="@string/pref_title__sub_proxy" />
|
||||
android:title="@string/pref_title__sub_proxy"
|
||||
android:icon="@drawable/ic_vpn_lock_black_24px"/>
|
||||
|
||||
</com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory>
|
||||
|
||||
|
|
@ -104,7 +118,8 @@
|
|||
<Preference
|
||||
android:key="@string/pref_key__cat_debugging"
|
||||
android:summary="@string/pref_desc__sub_logging"
|
||||
android:title="@string/pref_title__sub_logging" />
|
||||
android:title="@string/pref_title__sub_logging"
|
||||
android:icon="@drawable/ic_bug_report_black_24px"/>
|
||||
|
||||
</com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory>
|
||||
</PreferenceScreen>
|
||||
Loading…
Add table
Add a link
Reference in a new issue