| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2008 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <PreferenceScreen |
| xmlns:android="http://schemas.android.com/apk/res/android"> |
| |
| <PreferenceCategory |
| android:title="@string/text_preferences"> |
| |
| <ListPreference |
| android:key="fontsize" |
| android:defaultValue="@string/default_value_fontsize_preference" |
| android:title="@string/title_fontsize_preference" |
| android:summary="@string/summary_fontsize_preference" |
| android:entries="@array/entries_fontsize_preference" |
| android:entryValues="@array/entryvalues_fontsize_preference" |
| android:dialogTitle="@string/dialog_title_fontsize_preference" /> |
| |
| <ListPreference |
| android:key="color" |
| android:defaultValue="@string/default_value_color_preference" |
| android:title="@string/title_color_preference" |
| android:summary="@string/summary_color_preference" |
| android:entries="@array/entries_color_preference" |
| android:entryValues="@array/entryvalues_color_preference" |
| android:dialogTitle="@string/dialog_title_color_preference" /> |
| |
| </PreferenceCategory> |
| |
| <PreferenceCategory |
| android:title="@string/keyboard_preferences"> |
| |
| <ListPreference |
| android:key="controlkey" |
| android:defaultValue="@string/default_value_controlkey_preference" |
| android:title="@string/title_controlkey_preference" |
| android:summary="@string/summary_controlkey_preference" |
| android:entries="@array/entries_controlkey_preference" |
| android:entryValues="@array/entryvalues_controlkey_preference" |
| android:dialogTitle="@string/dialog_title_controlkey_preference" /> |
| |
| </PreferenceCategory> |
| |
| <PreferenceCategory |
| android:title="@string/shell_preferences"> |
| |
| <EditTextPreference |
| android:key="shell" |
| android:defaultValue="@string/default_value_shell_preference" |
| android:title="@string/title_shell_preference" |
| android:summary="@string/summary_shell_preference" |
| android:dialogTitle="@string/dialog_title_shell_preference" /> |
| <EditTextPreference |
| android:key="initialcommand" |
| android:defaultValue="@string/default_value_initialcommand_preference" |
| android:title="@string/title_initialcommand_preference" |
| android:summary="@string/summary_initialcommand_preference" |
| android:dialogTitle="@string/dialog_title_initialcommand_preference" /> |
| </PreferenceCategory> |
| </PreferenceScreen> |