blob: ff123ed0df66018984238fa1988abb69dab93728 [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
19
20 <PreferenceCategory
21 android:key="language_category"
22 android:title="@string/language_category">
23 <!--
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080024 <ListPreference
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070025 android:title="@string/phone_language"/>
26 -->
27
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070028 <PreferenceScreen
29 android:title="@string/phone_language">
30 <intent android:action="android.intent.action.MAIN"
31 android:targetPackage="com.android.settings"
32 android:targetClass="com.android.settings.LocalePicker"/>
33 </PreferenceScreen>
34 </PreferenceCategory>
35
36 <PreferenceCategory
37 android:title="@string/text_category" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080038 <PreferenceScreen
39 android:title="@string/input_methods_settings_title"
40 android:summary="@string/input_methods_settings_summary">
41 <intent android:action="android.intent.action.MAIN"
42 android:targetPackage="com.android.settings"
43 android:targetClass="com.android.settings.InputMethodsSettings" />
44 </PreferenceScreen>
The Android Open Source Project590c0a92009-01-22 00:13:44 -080045 <PreferenceScreen
46 android:title="@string/user_dict_settings_title"
47 android:summary="@string/user_dict_settings_summary">
48 <intent android:action="android.intent.action.MAIN"
49 android:targetPackage="com.android.settings"
50 android:targetClass="com.android.settings.UserDictionarySettings" />
51 </PreferenceScreen>
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070052 <CheckBoxPreference
53 android:key="auto_replace"
54 android:title="@string/auto_replace"
55 android:summaryOn="@string/auto_replace_summary"
56 android:summaryOff="@string/auto_replace_summary"
57 android:persistent="false"/>
58 <CheckBoxPreference
59 android:key="auto_caps"
60 android:title="@string/auto_caps"
61 android:summaryOn="@string/auto_caps_summary"
62 android:summaryOff="@string/auto_caps_summary"
63 android:persistent="false"/>
64 <CheckBoxPreference
65 android:key="auto_punctuate"
66 android:title="@string/auto_punctuate"
67 android:summaryOn="@string/auto_punctuate_summary"
68 android:summaryOff="@string/auto_punctuate_summary"
69 android:persistent="false"/>
70</PreferenceScreen>