1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2011, 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<merge
22    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
23>
24    <include
25        latin:keyboardLayout="@xml/key_styles_common" />
26    <include
27        latin:keyboardLayout="@xml/key_styles_number" />
28    <Row>
29        <Key
30            latin:keyStyle="num1KeyStyle" />
31        <Key
32            latin:keyStyle="num2KeyStyle" />
33        <Key
34            latin:keyStyle="num3KeyStyle" />
35        <Key
36            latin:keySpec="-"
37            latin:moreKeys="+"
38            latin:keyLabelFlags="hasPopupHint"
39            latin:keyStyle="numKeyStyle"
40            latin:backgroundType="functional"
41            latin:keyWidth="fillRight" />
42    </Row>
43    <Row>
44        <Key
45            latin:keyStyle="num4KeyStyle" />
46        <Key
47            latin:keyStyle="num5KeyStyle" />
48        <Key
49            latin:keyStyle="num6KeyStyle" />
50        <Key
51            latin:keySpec="."
52            latin:keyStyle="numKeyStyle"
53            latin:backgroundType="functional"
54            latin:keyWidth="fillRight" />
55    </Row>
56    <Row>
57        <Key
58            latin:keyStyle="num7KeyStyle" />
59        <Key
60            latin:keyStyle="num8KeyStyle" />
61        <Key
62            latin:keyStyle="num9KeyStyle" />
63        <Key
64            latin:keyStyle="deleteKeyStyle"
65            latin:keyWidth="fillRight" />
66    </Row>
67    <Row>
68        <Key
69            latin:keyStyle="numPhoneToSymbolKeyStyle" />
70        <!-- U+0030: "0" DIGIT ZERO -->
71        <Key
72            latin:keyStyle="num0KeyStyle"
73            latin:keySpec="0 +|0"
74            latin:moreKeys="!noPanelAutoMoreKey!,+" />
75        <Key
76            latin:keyStyle="numSpaceKeyStyle" />
77        <Key
78            latin:keyStyle="enterKeyStyle"
79            latin:keyWidth="fillRight" />
80    </Row>
81</merge>
82