• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?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
18        xmlns:android="http://schemas.android.com/apk/res/android">
19
20    <PreferenceCategory
21            android:title="@string/text_preferences">
22
23        <ListPreference
24                android:key="fontsize"
25                android:defaultValue="@string/default_value_fontsize_preference"
26                android:title="@string/title_fontsize_preference"
27                android:summary="@string/summary_fontsize_preference"
28                android:entries="@array/entries_fontsize_preference"
29                android:entryValues="@array/entryvalues_fontsize_preference"
30                android:dialogTitle="@string/dialog_title_fontsize_preference" />
31
32        <ListPreference
33                android:key="color"
34                android:defaultValue="@string/default_value_color_preference"
35                android:title="@string/title_color_preference"
36                android:summary="@string/summary_color_preference"
37                android:entries="@array/entries_color_preference"
38                android:entryValues="@array/entryvalues_color_preference"
39                android:dialogTitle="@string/dialog_title_color_preference" />
40
41    </PreferenceCategory>
42
43    <PreferenceCategory
44            android:title="@string/keyboard_preferences">
45
46        <ListPreference
47                android:key="controlkey"
48                android:defaultValue="@string/default_value_controlkey_preference"
49                android:title="@string/title_controlkey_preference"
50                android:summary="@string/summary_controlkey_preference"
51                android:entries="@array/entries_controlkey_preference"
52                android:entryValues="@array/entryvalues_controlkey_preference"
53                android:dialogTitle="@string/dialog_title_controlkey_preference" />
54
55    </PreferenceCategory>
56
57    <PreferenceCategory
58        android:title="@string/shell_preferences">
59
60    <EditTextPreference
61            android:key="shell"
62            android:defaultValue="@string/default_value_shell_preference"
63            android:title="@string/title_shell_preference"
64            android:summary="@string/summary_shell_preference"
65            android:dialogTitle="@string/dialog_title_shell_preference" />
66    <EditTextPreference
67            android:key="initialcommand"
68            android:defaultValue="@string/default_value_initialcommand_preference"
69            android:title="@string/title_initialcommand_preference"
70            android:summary="@string/summary_initialcommand_preference"
71            android:dialogTitle="@string/dialog_title_initialcommand_preference" />
72    </PreferenceCategory>
73</PreferenceScreen>
74