kbd_phone_symbols.xml revision 237af54df5f97cc9749286931b42f08e5730d1ab
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:keyEdgeFlags="left" />
35        <Key
36            latin:keyLabel="/" />
37        <Key
38            latin:keyLabel=")" />
39        <Key
40            latin:keyLabel="-"
41            latin:keyStyle="functionalKeyStyle"
42            latin:keyWidth="fillRight"
43            latin:keyEdgeFlags="right" />
44    </Row>
45    <Row>
46        <Key
47            latin:keyLabel="N"
48            latin:keyEdgeFlags="left" />
49        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 
50            has changed. -->
51        <Key
52            latin:code="44"
53            latin:keyLabel="Pause" />
54        <Key
55            latin:keyLabel="," />
56        <Key
57            latin:keyLabel="."
58            latin:keyStyle="functionalKeyStyle"
59            latin:keyWidth="fillRight"
60            latin:keyEdgeFlags="right" />
61    </Row>
62    <Row>
63        <Key
64            latin:keyStyle="numStarKeyStyle"
65            latin:keyEdgeFlags="left" />
66        <!-- Wait is a semicolon. -->
67        <Key
68            latin:code="59"
69            latin:keyLabel="Wait" />
70        <Key
71            latin:keyStyle="numPoundKeyStyle" />
72        <Key
73            latin:keyStyle="deleteKeyStyle"
74            latin:keyWidth="fillRight"
75            latin:keyEdgeFlags="right" />
76    </Row>
77    <Row
78        latin:rowEdgeFlags="bottom"
79    >
80        <Key
81            latin:code="@integer/key_switch_alpha_symbol"
82            latin:keyLabel="@string/label_to_numeric_key"
83            latin:keyEdgeFlags="left" />
84        <Key
85            latin:keyLabel="+" />
86        <Key
87            latin:keyStyle="numSpaceKeyStyle" />
88        <Key
89            latin:keyStyle="returnKeyStyle"
90            latin:keyWidth="fillRight"
91            latin:keyEdgeFlags="right" />
92    </Row>
93</Keyboard>
94