Initial commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<PreferenceScreen
|
||||
app:icon="@drawable/ic_edit"
|
||||
app:key="general"
|
||||
app:title="@string/prefs_general" />
|
||||
|
||||
<PreferenceScreen
|
||||
app:icon="@drawable/ic_palette_swatch_outline"
|
||||
app:key="appearance"
|
||||
app:title="@string/prefs_appearance" />
|
||||
|
||||
<PreferenceScreen
|
||||
app:icon="@drawable/ic_account_circle_outline"
|
||||
app:key="account"
|
||||
app:title="@string/prefs_account" />
|
||||
|
||||
<PreferenceScreen
|
||||
app:icon="@drawable/ic_info_outline"
|
||||
app:key="about"
|
||||
app:title="@string/prefs_about" />
|
||||
|
||||
<PreferenceScreen
|
||||
android:icon="@drawable/ic_outline_bug_report_24"
|
||||
android:title="@string/prefs_debug"
|
||||
app:key="debug" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<PreferenceScreen
|
||||
app:iconSpaceReserved="false"
|
||||
app:key="app_version"
|
||||
app:summary="@string/prefs_about_app_version_summary"
|
||||
app:title="@string/prefs_about_app_version_title" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<PreferenceScreen
|
||||
app:icon="@drawable/ic_exit_to_app"
|
||||
app:key="account_logout"
|
||||
app:title="@string/pref_account_logout_title" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<ListPreference
|
||||
app:defaultValue="3"
|
||||
app:entries="@array/theme_entries"
|
||||
app:entryValues="@array/theme_values"
|
||||
app:icon="@drawable/ic_outline_format_paint"
|
||||
app:key="appearance_theme"
|
||||
app:title="@string/pref_appearance_theme_title"/>
|
||||
|
||||
<ListPreference
|
||||
app:defaultValue="1"
|
||||
app:enabled="false"
|
||||
app:entries="@array/conversations_type_entries"
|
||||
app:entryValues="@array/conversations_type_values"
|
||||
app:icon="@drawable/ic_format_size"
|
||||
app:isPreferenceVisible="false"
|
||||
app:key="appearance_extended_conversations"
|
||||
app:title="@string/pref_appearance_extended_conversations_title" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<PreferenceScreen
|
||||
app:key="clear_users_groups_cache"
|
||||
app:iconSpaceReserved="false"
|
||||
app:title="@string/prefs_debug_clear_users_groups_cache" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<SwitchPreferenceCompat
|
||||
app:defaultValue="true"
|
||||
app:iconSpaceReserved="false"
|
||||
app:key="hide_keyboard_on_scroll_up"
|
||||
app:title="@string/fragment_settings_general_hide_keyboard_on_scroll_up_title" />
|
||||
|
||||
</PreferenceScreen>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<paths>
|
||||
<external-path
|
||||
name="external"
|
||||
path="." />
|
||||
<external-files-path
|
||||
name="external_files"
|
||||
path="." />
|
||||
<files-path
|
||||
name="files"
|
||||
path="." />
|
||||
</paths>
|
||||
Reference in New Issue
Block a user