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:keySpec="("
31            latin:keyStyle="numSymbolKeyStyle" />
32        <Key
33            latin:keySpec="/"
34            latin:keyStyle="numSymbolKeyStyle" />
35        <Key
36            latin:keySpec=")"
37            latin:keyStyle="numSymbolKeyStyle" />
38        <Key
39            latin:keySpec="-"
40            latin:moreKeys="+"
41            latin:keyLabelFlags="hasPopupHint"
42            latin:keyStyle="numKeyStyle"
43            latin:backgroundType="functional"
44            latin:keyWidth="fillRight" />
45    </Row>
46    <Row>
47        <Key
48            latin:keySpec="N"
49            latin:keyStyle="numSymbolKeyStyle" />
50        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this
51            has changed. -->
52        <Key
53            latin:keySpec="!string/label_pause_key|,"
54            latin:keyLabelFlags="followKeyLabelRatio|autoXScale"
55            latin:keyStyle="numSymbolKeyStyle" />
56        <Key
57            latin:keySpec=","
58            latin:keyStyle="numSymbolKeyStyle" />
59        <Key
60            latin:keySpec="."
61            latin:keyStyle="numKeyStyle"
62            latin:backgroundType="functional"
63            latin:keyWidth="fillRight" />
64    </Row>
65    <Row>
66        <!-- U+FF0A: "*" FULLWIDTH ASTERISK -->
67        <Key
68            latin:keySpec="&#xFF0A;|*"
69            latin:keyStyle="numSymbolKeyStyle" />
70        <!-- Wait is a semicolon. -->
71        <Key
72            latin:keySpec="!string/label_wait_key|;"
73            latin:keyLabelFlags="followKeyLabelRatio|autoXScale"
74            latin:keyStyle="numSymbolKeyStyle" />
75        <Key
76            latin:keySpec="\#"
77            latin:keyStyle="numSymbolKeyStyle" />
78        <Key
79            latin:keyStyle="deleteKeyStyle"
80            latin:keyWidth="fillRight" />
81    </Row>
82    <Row>
83        <Key
84            latin:keyStyle="numPhoneToNumericKeyStyle" />
85        <Key
86            latin:keySpec="+"
87            latin:keyStyle="numSymbolKeyStyle" />
88        <Key
89            latin:keyStyle="numSpaceKeyStyle" />
90        <Key
91            latin:keyStyle="enterKeyStyle"
92            latin:keyWidth="fillRight" />
93    </Row>
94</merge>
95