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