1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2010 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <!-- App-wide preferences --> 18 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 19 20 <PreferenceCategory 21 android:key="category_general_preferences" 22 android:title="@string/category_general_preferences"> 23 24 <ListPreference 25 android:key="auto_advance" 26 android:title="@string/general_preference_auto_advance_label" 27 android:summary="@string/general_preference_auto_advance_summary" 28 android:entries="@array/general_preference_auto_advance_entries" 29 android:entryValues="@array/general_preference_auto_advance_values" 30 android:dialogTitle="@string/general_preference_auto_advance_dialog_title" /> 31 32 <!-- Note, summary is set dynamically in GeneralPreferences.java --> 33 <ListPreference 34 android:key="text_zoom" 35 android:title="@string/general_preference_text_zoom_label" 36 android:entries="@array/general_preference_text_zoom_entries" 37 android:entryValues="@array/general_preference_text_zoom_values" 38 android:dialogTitle="@string/general_preference_text_zoom_dialog_title" /> 39 40 <!-- This may be removed in GeneralPreferences.java --> 41 <CheckBoxPreference 42 android:key="reply_all" 43 android:persistent="true" 44 android:defaultValue="false" 45 android:title="@string/general_preference_reply_all_label" 46 android:summary="@string/general_preference_reply_all_summary" /> 47 48 <PreferenceScreen 49 android:key="clear_trusted_senders" 50 android:title="@string/general_preferences_clear_trusted_senders_title" 51 android:summary="@string/general_preferences_clear_trusted_senders_summary" /> 52 53 </PreferenceCategory> 54 </PreferenceScreen> 55