diff options
author | 2011-04-20 16:52:07 +0900 | |
---|---|---|
committer | 2011-04-20 17:31:59 +0900 | |
commit | c899038eee5c01d520a2707cca01ee093a674d05 (patch) | |
tree | c656553da022c51fcb10e6b149928a167a3b2ea2 /java/res | |
parent | b1ae5d84b1bcb0e8c18e80a4ca13a81d9c9c2772 (diff) | |
download | latinime-c899038eee5c01d520a2707cca01ee093a674d05.tar.gz latinime-c899038eee5c01d520a2707cca01ee093a674d05.tar.xz latinime-c899038eee5c01d520a2707cca01ee093a674d05.zip |
Move language-specific keyboard setting to resources.
Some flag settings used to be stored in a keyboard layout extravalue setting. This
change:
- Introduces the capability of setting such specific flags in values/config.xml
- Retains the ability to use extravalues (for layout-specific settings), though
there is no more any such setting at the moment.
- Fixes a bug where loading a dictionary from outside does not initialize the flags.
- Moves Flag to another class.
Note: this needs I705ec68c to avoid breaking the build
Change-Id: Ia7703aae3215b06c0b3cb792821649806e8998c1
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values-de/config.xml | 23 | ||||
-rw-r--r-- | java/res/values/config.xml | 1 | ||||
-rw-r--r-- | java/res/xml/method.xml | 1 |
3 files changed, 24 insertions, 1 deletions
diff --git a/java/res/values-de/config.xml b/java/res/values-de/config.xml new file mode 100644 index 000000000..272ff326f --- /dev/null +++ b/java/res/values-de/config.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2011, 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. +*/ +--> + +<resources> + <bool name="config_require_umlaut_processing">true</bool> +</resources> diff --git a/java/res/values/config.xml b/java/res/values/config.xml index 64e2c6753..300aaa423 100644 --- a/java/res/values/config.xml +++ b/java/res/values/config.xml @@ -78,4 +78,5 @@ </string-array> <!-- Screen metrics for logging. 0 = "mdpi", 1 = "hdpi", 2 = "xlarge" --> <integer name="log_screen_metrics">0</integer> + <bool name="config_require_umlaut_processing">false</bool> </resources> diff --git a/java/res/xml/method.xml b/java/res/xml/method.xml index 1b122be5f..513076733 100644 --- a/java/res/xml/method.xml +++ b/java/res/xml/method.xml @@ -72,7 +72,6 @@ android:label="@string/subtype_mode_de_keyboard" android:imeSubtypeLocale="de" android:imeSubtypeMode="keyboard" - android:imeSubtypeExtraValue="requiresGermanUmlautProcessing" /> <!-- <subtype android:icon="@drawable/ic_subtype_mic" --> <!-- android:label="@string/subtype_mode_de_voice" --> |