diff options
author | 2013-05-13 18:16:15 +0900 | |
---|---|---|
committer | 2013-05-13 18:19:20 +0900 | |
commit | 0efd8d1b692bb551f3283ecb6638656d4ab40752 (patch) | |
tree | 94af21cd69f8639f66030f47cbae79c98cc2f850 /java/res/values-land | |
parent | 6b0bcfba9b9a1f2079769aa331a7fc4daf071d9b (diff) | |
download | latinime-0efd8d1b692bb551f3283ecb6638656d4ab40752.tar.gz latinime-0efd8d1b692bb551f3283ecb6638656d4ab40752.tar.xz latinime-0efd8d1b692bb551f3283ecb6638656d4ab40752.zip |
Fix landscape override value expression
This is a follow up of I275c99db8a.
Bug: 8556975
Change-Id: Ia6c2ab878760523da767036ce0bfc6c8350e1a92
Diffstat (limited to 'java/res/values-land')
-rw-r--r-- | java/res/values-land/keyboard-heights.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/java/res/values-land/keyboard-heights.xml b/java/res/values-land/keyboard-heights.xml index 4ebeda559..670be3329 100644 --- a/java/res/values-land/keyboard-heights.xml +++ b/java/res/values-land/keyboard-heights.xml @@ -19,19 +19,21 @@ --> <resources> - <!-- Build.HARDWARE,keyboard_height_in_dp --> + <!-- Build condition,keyboard_height_in_dp --> <string-array name="keyboard_heights" translatable="false"> <!-- Preferable keyboard height in absolute scale: 1.100in --> <!-- Droid --> - <item>sholes,194.3333</item> + <item>HARDWARE=sholes,194.3333</item> <!-- Nexus One --> - <item>mahimahi,186.2667</item> + <item>HARDWARE=mahimahi,186.2667</item> <!-- Nexus S --> - <item>herring,171.9385</item> + <item>HARDWARE=herring,171.9385</item> <!-- Galaxy Nexus --> - <item>tuna,173.4207</item> + <item>HARDWARE=tuna,173.4207</item> <!-- Preferable keyboard height in absolute scale: 45.0mm --> <!-- Xoom --> - <item>stingray,265.4378</item> + <item>HARDWARE=stingray,265.4378</item> + <!-- Default value for unknown device: empty string --> + <item>,</item> </string-array> </resources> |