kbd_phone_symbols.xml revision 520a297ad1d148a57bcf6559a9802d5d49182d70
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* 
4**
5** Copyright 2008, 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<Keyboard
22    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
23    latin:keyWidth="26.67%p"
24>
25    <include
26        latin:keyboardLayout="@xml/kbd_key_styles" />
27    <include
28        latin:keyboardLayout="@xml/kbd_numkey_styles" />
29    <Row
30        latin:rowEdgeFlags="top"
31    >
32        <Key
33            latin:keyLabel="("
34            latin:keyStyle="numKeyStyle"
35            latin:keyEdgeFlags="left" />
36        <Key
37            latin:keyLabel="/"
38            latin:keyStyle="numKeyStyle" />
39        <Key
40            latin:keyLabel=")"
41            latin:keyStyle="numKeyStyle" />
42        <Key
43            latin:keyLabel="-"
44            latin:keyStyle="numFunctionalKeyStyle"
45            latin:keyWidth="fillRight"
46            latin:keyEdgeFlags="right" />
47    </Row>
48    <Row>
49        <Key
50            latin:keyLabel="N"
51            latin:keyEdgeFlags="left" />
52        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 
53            has changed. -->
54        <Key
55            latin:code="44"
56            latin:keyLabel="@string/label_pause_key"
57            latin:keyLabelOption="followKeyHintLabelRatio" />
58        <Key
59            latin:keyLabel=","
60            latin:keyStyle="numKeyStyle" />
61        <Key
62            latin:keyLabel="."
63            latin:keyStyle="numFunctionalKeyStyle"
64            latin:keyWidth="fillRight"
65            latin:keyEdgeFlags="right" />
66    </Row>
67    <Row>
68        <Key
69            latin:keyStyle="numStarKeyStyle"
70            latin:keyEdgeFlags="left" />
71        <!-- Wait is a semicolon. -->
72        <Key
73            latin:code="59"
74            latin:keyLabel="@string/label_wait_key"
75            latin:keyLabelOption="followKeyHintLabelRatio" />
76        <Key
77            latin:keyLabel="#"
78            latin:keyStyle="numKeyStyle" />
79        <Key
80            latin:keyStyle="deleteKeyStyle"
81            latin:keyWidth="fillRight"
82            latin:keyEdgeFlags="right" />
83    </Row>
84    <Row
85        latin:rowEdgeFlags="bottom"
86    >
87        <Key
88            latin:keyStyle="numSwitchToNumericKeyStyle"
89            latin:keyEdgeFlags="left" />
90        <Key
91            latin:keyLabel="+"
92            latin:keyStyle="numKeyStyle" />
93        <Key
94            latin:keyStyle="numSpaceKeyStyle" />
95        <Key
96            latin:keyStyle="returnKeyStyle"
97            latin:keyWidth="fillRight"
98            latin:keyEdgeFlags="right" />
99    </Row>
100</Keyboard>
101