blob: 48764e7c74b7a864998a532bd213e117e7059bc3 [file] [log] [blame]
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2010, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<!-- Serbian keyboard layout, based on the X11 layout for Serbian -->
22<Keyboard
23 xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
Tadashi G. Takaoka9f01ed52010-12-08 14:36:41 +090024 latin:keyboardHeight="@dimen/keyboardHeight"
25 latin:maxKeyboardHeight="50%p"
26 latin:rowHeight="25%p"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090027 latin:keyWidth="9.09%p"
28 latin:horizontalGap="@dimen/key_horizontal_gap"
29 latin:verticalGap="@dimen/key_bottom_gap"
Tadashi G. Takaoka9b6d1d52010-12-14 15:31:47 +090030 latin:popupKeyboardTemplate="@xml/kbd_popup_template"
31 latin:maxPopupKeyboardColumn="@integer/config_max_popup_keyboard_column"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090032>
33 <include
34 latin:keyboardLayout="@xml/kbd_key_styles" />
35 <!-- This row is intentionally not marked as a top row -->
36 <Row
37 latin:keyWidth="7.520%p"
38 >
39 <Key
40 latin:keyStyle="tabKeyStyle"
41 latin:keyLabelOption="alignLeft"
42 latin:keyWidth="7.949%p"
43 latin:keyEdgeFlags="left" />
44 <Key
45 latin:keyLabel="љ"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090046 latin:popupCharacters="1" />
47 <Key
48 latin:keyLabel="њ"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090049 latin:popupCharacters="2" />
50 <Key
51 latin:keyLabel="е"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090052 latin:popupCharacters="3" />
53 <Key
54 latin:keyLabel="р"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090055 latin:popupCharacters="4" />
56 <Key
57 latin:keyLabel="т"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090058 latin:popupCharacters="5" />
59 <Key
60 latin:keyLabel="з"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090061 latin:popupCharacters="6" />
62 <Key
63 latin:keyLabel="у"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090064 latin:popupCharacters="7" />
65 <Key
66 latin:keyLabel="и"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090067 latin:popupCharacters="8" />
68 <Key
69 latin:keyLabel="о"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090070 latin:popupCharacters="9" />
71 <Key
72 latin:keyLabel="п"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +090073 latin:popupCharacters="0" />
74 <Key
75 latin:keyLabel="ш" />
76 <Key
77 latin:keyStyle="deleteKeyStyle"
78 latin:keyWidth="9.331%p"
79 latin:keyEdgeFlags="right" />
80 </Row>
81 <Row
82 latin:keyWidth="7.520%p"
83 >
84 <Key
85 latin:keyStyle="toSymbolKeyStyle"
86 latin:keyLabelOption="alignLeft"
87 latin:keyWidth="7.949%p"
88 latin:keyEdgeFlags="left" />
89 <Key
90 latin:keyLabel="а" />
91 <Key
92 latin:keyLabel="с" />
93 <Key
94 latin:keyLabel="д" />
95 <Key
96 latin:keyLabel="ф" />
97 <Key
98 latin:keyLabel="г" />
99 <Key
100 latin:keyLabel="х" />
101 <Key
102 latin:keyLabel="ј" />
103 <Key
104 latin:keyLabel="к" />
105 <Key
106 latin:keyLabel="л" />
107 <Key
108 latin:keyLabel="ч" />
109 <Key
110 latin:keyLabel="ћ" />
111 <Key
112 latin:keyStyle="returnKeyStyle"
113 latin:keyWidth="9.331%p"
114 latin:keyEdgeFlags="right" />
115 </Row>
116 <Row
117 latin:keyWidth="7.520%p"
118 >
119 <Key
120 latin:keyStyle="shiftKeyStyle"
121 latin:keyWidth="12.400%p"
122 latin:keyEdgeFlags="left" />
123 <Key
124 latin:keyLabel="ђ" />
125 <Key
126 latin:keyLabel="ж" />
127 <Key
128 latin:keyLabel="џ" />
129 <Key
130 latin:keyLabel="ц" />
131 <Key
132 latin:keyLabel="в" />
133 <Key
134 latin:keyLabel="б" />
135 <Key
136 latin:keyLabel="н" />
137 <Key
138 latin:keyLabel="м" />
139 <Key
140 latin:keyLabel=","
141 latin:manualTemporaryUpperCaseCode="33"
142 latin:keyHintIcon="@drawable/key_hint_exclamation_holo"
143 latin:manualTemporaryUpperCaseHintIcon="@drawable/key_hint_exclamation_large_holo"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +0900144 latin:popupCharacters="!" />
145 <Key
146 latin:keyLabel="."
147 latin:manualTemporaryUpperCaseCode="63"
148 latin:keyHintIcon="@drawable/key_hint_question_holo"
149 latin:manualTemporaryUpperCaseHintIcon="@drawable/key_hint_question_large_holo"
Tadashi G. Takaoka58baaea2010-12-01 22:06:32 +0900150 latin:popupCharacters="\?" />
151 <Key
152 latin:keyStyle="shiftKeyStyle"
153 latin:keyWidth="12.400%p"
154 latin:keyEdgeFlags="right" />
155 </Row>
156 <include
157 latin:keyboardLayout="@xml/kbd_qwerty_row4" />
158</Keyboard>