2016-09-21 23:55:20 +02:00
|
|
|
<PreferenceScreen
|
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-09-25 07:16:28 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_general_title">
|
2016-09-21 23:55:20 +02:00
|
|
|
|
2016-09-25 07:16:28 +02:00
|
|
|
<ListPreference
|
|
|
|
android:key="theme"
|
|
|
|
android:title="Theme"
|
|
|
|
android:summary="Select a theme"
|
|
|
|
android:entries="@array/themes"
|
|
|
|
android:entryValues="@array/themes"/>
|
|
|
|
</PreferenceCategory>
|
2016-09-21 23:55:20 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_quicksettings_category">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="enable_quicktile"
|
|
|
|
android:title="@string/settings_enable_quicktile_title"
|
|
|
|
android:summary="@string/settings_enable_quicktile_summary" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_root_category">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="keep_root_off"
|
|
|
|
android:title="@string/settings_keep_root_off_title"
|
|
|
|
android:summary="@string/settings_keep_root_off_summary" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="hide_root_notification"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="@string/settings_hide_root_notification_title"
|
|
|
|
android:summary="@string/settings_hide_root_notification_summary" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_development_category">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="developer_logging"
|
|
|
|
android:title="@string/settings_developer_logging_title"
|
|
|
|
android:summary="@string/settings_developer_logging_summary" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|