blob: 2927540cf7701e438a5ab4fe8e4d5ed8b60e1f62 [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"
The Android Open Source Project1feaa852009-02-10 15:44:05 -080018 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
19 android:title="@string/language_settings">
20
21 <PreferenceScreen
22 android:title="@string/phone_language"
23 android:summary="@string/phone_language_summary">
24 <intent android:action="android.intent.action.MAIN"
25 android:targetPackage="com.android.settings"
26 android:targetClass="com.android.settings.LocalePicker"/>
27 </PreferenceScreen>
28
The Android Open Source Projecta578a6c2009-03-03 14:04:35 -080029 <PreferenceCategory
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070030 android:title="@string/text_category" />
The Android Open Source Projecta578a6c2009-03-03 14:04:35 -080031 <PreferenceScreen
32 android:title="@string/input_methods_settings_title"
33 android:summary="@string/input_methods_settings_summary">
34 <intent android:action="android.intent.action.MAIN"
35 android:targetPackage="com.android.settings"
36 android:targetClass="com.android.settings.InputMethodsSettings" />
37 </PreferenceScreen>
The Android Open Source Project590c0a92009-01-22 00:13:44 -080038 <PreferenceScreen
39 android:title="@string/user_dict_settings_title"
40 android:summary="@string/user_dict_settings_summary">
41 <intent android:action="android.intent.action.MAIN"
42 android:targetPackage="com.android.settings"
43 android:targetClass="com.android.settings.UserDictionarySettings" />
44 </PreferenceScreen>
The Android Open Source Project1feaa852009-02-10 15:44:05 -080045 <PreferenceCategory
46 android:key="hardkeyboard_category"
47 android:title="@string/hardkeyboard_category">
48 <CheckBoxPreference
49 android:key="auto_replace"
50 android:title="@string/auto_replace"
51 android:summaryOn="@string/auto_replace_summary"
52 android:summaryOff="@string/auto_replace_summary"
53 android:persistent="false"/>
54 <CheckBoxPreference
55 android:key="auto_caps"
56 android:title="@string/auto_caps"
57 android:summaryOn="@string/auto_caps_summary"
58 android:summaryOff="@string/auto_caps_summary"
59 android:persistent="false"/>
60 <CheckBoxPreference
61 android:key="auto_punctuate"
62 android:title="@string/auto_punctuate"
63 android:summaryOn="@string/auto_punctuate_summary"
64 android:summaryOff="@string/auto_punctuate_summary"
65 android:persistent="false"/>
66 </PreferenceCategory>
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070067</PreferenceScreen>