kbd_phone_symbols.xml revision c4f71668d7b8203dc66f0f04c089a363189eb4ce
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:keyboardHeight="@dimen/keyboardHeight"
24    latin:maxKeyboardHeight="50%p"
25    latin:rowHeight="25%p"
26    latin:keyWidth="26.67%p"
27    latin:horizontalGap="@dimen/key_horizontal_gap"
28    latin:verticalGap="@dimen/key_bottom_gap"
29    latin:popupKeyboardTemplate="@xml/kbd_popup_template"
30    latin:maxPopupKeyboardColumn="@integer/config_max_popup_keyboard_column"
31>
32    <include
33        latin:keyboardLayout="@xml/kbd_key_styles" />
34    <include
35        latin:keyboardLayout="@xml/kbd_numkey_styles" />
36    <Row
37        latin:rowEdgeFlags="top"
38    >
39        <Key
40            latin:keyLabel="("
41            latin:keyEdgeFlags="left" />
42        <Key
43            latin:keyLabel="/" />
44        <Key
45            latin:keyLabel=")" />
46        <Key
47            latin:keyLabel="-"
48            latin:keyStyle="functionalKeyStyle"
49            latin:keyWidth="20%p"
50            latin:keyEdgeFlags="right" />
51    </Row>
52    <Row>
53        <Key
54            latin:keyLabel="N"
55            latin:keyEdgeFlags="left" />
56        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 
57            has changed. -->
58        <Key
59            latin:code="44"
60            latin:keyLabel="Pause" />
61        <Key
62            latin:keyLabel="," />
63        <Key
64            latin:keyLabel="."
65            latin:keyStyle="functionalKeyStyle"
66            latin:keyWidth="20%p"
67            latin:keyEdgeFlags="right" />
68    </Row>
69    <Row>
70        <Key
71            latin:keyStyle="numStarKeyStyle"
72            latin:keyEdgeFlags="left" />
73        <!-- Wait is a semicolon. -->
74        <Key
75            latin:code="59"
76            latin:keyLabel="Wait" />
77        <Key
78            latin:keyStyle="numPoundKeyStyle" />
79        <Key
80            latin:keyStyle="deleteKeyStyle"
81            latin:keyWidth="20%p"
82            latin:keyEdgeFlags="right" />
83    </Row>
84    <Row
85        latin:rowEdgeFlags="bottom"
86    >
87        <Key
88            latin:code="@integer/key_switch_alpha_symbol"
89            latin:keyLabel="@string/label_to_numeric_key"
90            latin:keyEdgeFlags="left" />
91        <Key
92            latin:keyLabel="+" />
93        <Key
94            latin:keyStyle="numSpaceKeyStyle" />
95        <Key
96            latin:keyStyle="returnKeyStyle"
97            latin:keyWidth="20%p"
98            latin:keyEdgeFlags="right" />
99    </Row>
100</Keyboard>
101