diff options
author | 2014-09-09 16:21:35 +0900 | |
---|---|---|
committer | 2014-09-12 18:46:27 +0900 | |
commit | 9c31e8f863ae76e293baa38207ccddfa93edfb80 (patch) | |
tree | 21c427ab3eeed119a839dcec3371f887d947e8b2 /java/res/xml/rowkeys_qwerty1_left5.xml | |
parent | 3939455c1dde7023c2f404b5702a23485defc942 (diff) | |
download | latinime-9c31e8f863ae76e293baa38207ccddfa93edfb80.tar.gz latinime-9c31e8f863ae76e293baa38207ccddfa93edfb80.tar.xz latinime-9c31e8f863ae76e293baa38207ccddfa93edfb80.zip |
Initial split QWERTY layout
Change [2/3]
Add an attribute that's used in layout xmls for specifying
the split-keyboard layout.
This attribute will be checked/set by the KeyboardBuilder which knows about
the "splittability" of the keyboard.
Bug: 4968173
Change-Id: I5d792e570b9648e09022e9b7e92a972a161009ee
Diffstat (limited to 'java/res/xml/rowkeys_qwerty1_left5.xml')
-rw-r--r-- | java/res/xml/rowkeys_qwerty1_left5.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/java/res/xml/rowkeys_qwerty1_left5.xml b/java/res/xml/rowkeys_qwerty1_left5.xml new file mode 100644 index 000000000..ff9f1b2b5 --- /dev/null +++ b/java/res/xml/rowkeys_qwerty1_left5.xml @@ -0,0 +1,49 @@ +<?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. +*/ +--> + +<merge + xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" +> + <Key + latin:keySpec="!text/keyspec_q" + latin:keyHintLabel="1" + latin:additionalMoreKeys="1" + latin:moreKeys="!text/morekeys_q" /> + <Key + latin:keySpec="!text/keyspec_w" + latin:keyHintLabel="2" + latin:additionalMoreKeys="2" + latin:moreKeys="!text/morekeys_w" /> + <Key + latin:keySpec="e" + latin:keyHintLabel="3" + latin:additionalMoreKeys="3" + latin:moreKeys="!text/morekeys_e" /> + <Key + latin:keySpec="r" + latin:keyHintLabel="4" + latin:additionalMoreKeys="4" + latin:moreKeys="!text/morekeys_r" /> + <Key + latin:keySpec="t" + latin:keyHintLabel="5" + latin:additionalMoreKeys="5" + latin:moreKeys="!text/morekeys_t" /> +</merge> |