diff options
author | 2014-11-27 16:29:48 +0900 | |
---|---|---|
committer | 2014-11-27 17:03:40 +0900 | |
commit | 06b02817b321d026dd1dc24e8311a52688451aa5 (patch) | |
tree | d2348500fb7569d162cde1525f5a09ac2dbf6a29 /java/res/values-v19 | |
parent | bb4075bc9378b791f5b73bde2a448acc50606947 (diff) | |
download | latinime-06b02817b321d026dd1dc24e8311a52688451aa5.tar.gz latinime-06b02817b321d026dd1dc24e8311a52688451aa5.tar.xz latinime-06b02817b321d026dd1dc24e8311a52688451aa5.zip |
Fix crash while settings custom input style
Bug: 18515346
Change-Id: I3a893333762233cd6c8716755793f6ffaf22bb9a
Diffstat (limited to 'java/res/values-v19')
-rw-r--r-- | java/res/values-v19/spinner-style.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/res/values-v19/spinner-style.xml b/java/res/values-v19/spinner-style.xml new file mode 100644 index 000000000..7de59edf3 --- /dev/null +++ b/java/res/values-v19/spinner-style.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2014, 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 xmlns:android="http://schemas.android.com/apk/res/android"> + <!-- Until KitKat (API 19), {@link android.widget.Spinner} of dialog mode in a Dialog can't + handle orientation change correctly. Using dropdown mode avoids the issue. + This file overrides values/spinner-style.xml on KitKat and newer device. --> + <style name="additionalSubtypeSpinnerStyle"> + <item name="android:spinnerMode">dialog</item> + </style> +</resources> |