kbd_phone_symbols.xml revision 7f0befe1f0e346ec6468f229f337eda32e19f6d8
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    latin:horizontalGap="@dimen/key_horizontal_gap"
25    latin:verticalGap="@dimen/key_bottom_gap"
26    latin:keyHeight="@dimen/key_height"
27>
28    <include
29        latin:keyboardLayout="@xml/kbd_key_styles" />
30    <include
31        latin:keyboardLayout="@xml/kbd_numkey_styles" />
32    <Row
33        latin:rowEdgeFlags="top"
34    >
35        <Key
36            latin:keyLabel="("
37            latin:keyEdgeFlags="left" />
38        <Key
39            latin:keyLabel="/" />
40        <Key
41            latin:keyLabel=")" />
42        <Key
43            latin:keyLabel="-"
44            latin:keyStyle="functionalKeyStyle"
45            latin:keyWidth="20%p"
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:codes="44"
56            latin:keyLabel="Pause" />
57        <Key
58            latin:keyLabel="," />
59        <Key
60            latin:keyLabel="."
61            latin:keyStyle="functionalKeyStyle"
62            latin:keyWidth="20%p"
63            latin:keyEdgeFlags="right" />
64    </Row>
65    <Row>
66        <Key
67            latin:keyStyle="numStarKeyStyle"
68            latin:keyEdgeFlags="left" />
69        <!-- Wait is a semicolon. -->
70        <Key
71            latin:codes="59"
72            latin:keyLabel="Wait" />
73        <Key
74            latin:keyStyle="numPoundKeyStyle" />
75        <Key
76            latin:keyStyle="deleteKeyStyle"
77            latin:keyWidth="20%p"
78            latin:keyEdgeFlags="right" />
79    </Row>
80    <Row
81        latin:rowEdgeFlags="bottom"
82    >
83        <Key
84            latin:codes="@integer/key_switch_alpha_symbol"
85            latin:keyLabel="@string/label_phone_key"
86            latin:keyEdgeFlags="left" />
87        <Key
88            latin:keyLabel="+" />
89        <Key
90            latin:keyStyle="numSpaceKeyStyle" />
91        <Key
92            latin:keyStyle="returnKeyStyle"
93            latin:keyWidth="20%p"
94            latin:keyEdgeFlags="right" />
95    </Row>
96</Keyboard>
97