Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 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     xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
     20     android:title="@string/settings_screen_preferences">
     21     <CheckBoxPreference
     22         android:key="auto_cap"
     23         android:title="@string/auto_cap"
     24         android:summary="@string/auto_cap_summary"
     25         android:defaultValue="true"
     26         android:persistent="true" />
     27     <CheckBoxPreference
     28         android:key="pref_key_use_double_space_period"
     29         android:title="@string/use_double_space_period"
     30         android:summary="@string/use_double_space_period_summary"
     31         android:defaultValue="true"
     32         android:persistent="true" />
     33     <CheckBoxPreference
     34         android:key="vibrate_on"
     35         android:title="@string/vibrate_on_keypress"
     36         android:defaultValue="@bool/config_default_vibration_enabled"
     37         android:persistent="true" />
     38     <CheckBoxPreference
     39         android:key="sound_on"
     40         android:title="@string/sound_on_keypress"
     41         android:defaultValue="@bool/config_default_sound_enabled"
     42         android:persistent="true" />
     43     <CheckBoxPreference
     44         android:key="popup_on"
     45         android:title="@string/popup_on_keypress"
     46         android:defaultValue="@bool/config_default_key_preview_popup"
     47         android:persistent="true" />
     48     <CheckBoxPreference
     49         android:key="pref_voice_input_key"
     50         android:title="@string/voice_input"
     51         android:defaultValue="true"
     52         android:persistent="true" />
     53 </PreferenceScreen>
     54