Add new settings UI to select keyboard layout.
Bug: 6110399 Change-Id: Ib2758bdcdd6b271be402f46c56d41619dc7aecb9
This commit is contained in:
@@ -2614,6 +2614,12 @@
|
||||
<!-- On Language & input settings screen, setting summary. Setting for mouse pointer speed. [CHAR LIMIT=35] -->
|
||||
<string name="pointer_speed">Pointer speed</string>
|
||||
|
||||
<!-- Keyboard Layout Picker --> <skip />
|
||||
<!-- Title for the keyboard layout picker activity. [CHAR LIMIT=35] -->
|
||||
<string name="keyboard_layout_picker_title">Choose keyboard layout</string>
|
||||
<!-- String to show when no keyboard layouts are available. [CHAR LIMIT=60] -->
|
||||
<string name="keyboard_layout_picker_empty_text">No keyboard layouts are available.</string>
|
||||
|
||||
<!-- User dictionary settings --><skip />
|
||||
<!-- User dictionary settings, The titlebar text of the User dictionary settings screen. -->
|
||||
<string name="user_dict_settings_titlebar">User dictionary</string>
|
||||
|
@@ -36,27 +36,34 @@
|
||||
<PreferenceScreen android:key="current_input_method"
|
||||
android:title="@string/current_input_method" />
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
android:key="hard_keyboard"
|
||||
android:title="@string/builtin_keyboard_settings_title"
|
||||
android:persistent="false">
|
||||
<!-- Additional preference screens are inserted here programmatically
|
||||
with low order values to set the key map of each attached keyboard. -->
|
||||
|
||||
<CheckBoxPreference
|
||||
android:key="auto_replace"
|
||||
android:title="@string/auto_replace"
|
||||
android:summaryOn="@string/auto_replace_summary"
|
||||
android:summaryOff="@string/auto_replace_summary"
|
||||
android:order="1000"
|
||||
android:persistent="false"/>
|
||||
<CheckBoxPreference
|
||||
android:key="auto_caps"
|
||||
android:title="@string/auto_caps"
|
||||
android:summaryOn="@string/auto_caps_summary"
|
||||
android:summaryOff="@string/auto_caps_summary"
|
||||
android:order="1001"
|
||||
android:persistent="false"/>
|
||||
<CheckBoxPreference
|
||||
android:key="auto_punctuate"
|
||||
android:title="@string/auto_punctuate"
|
||||
android:summaryOn="@string/auto_punctuate_summary"
|
||||
android:summaryOff="@string/auto_punctuate_summary"
|
||||
android:order="1002"
|
||||
android:persistent="false"/>
|
||||
</PreferenceCategory>
|
||||
|
||||
|
Reference in New Issue
Block a user