kbd_phone_symbols.xml revision 426723a9cfb18d742602cb5098092808d592ea6d
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        <Key
31            latin:keyLabel="("
32            latin:keyStyle="numKeyStyle" />
33        <Key
34            latin:keyLabel="/"
35            latin:keyStyle="numKeyStyle" />
36        <Key
37            latin:keyLabel=")"
38            latin:keyStyle="numKeyStyle" />
39        <Key
40            latin:keyLabel="-"
41            latin:keyStyle="numFunctionalKeyStyle"
42            latin:keyWidth="fillRight" />
43    </Row>
44    <Row>
45        <Key
46            latin:keyLabel="N" />
47        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 
48            has changed. -->
49        <Key
50            latin:code="44"
51            latin:keyLabel="@string/label_pause_key"
52            latin:keyLabelOption="followKeyHintLabelRatio" />
53        <Key
54            latin:keyLabel=","
55            latin:keyStyle="numKeyStyle" />
56        <Key
57            latin:keyLabel="."
58            latin:keyStyle="numFunctionalKeyStyle"
59            latin:keyWidth="fillRight" />
60    </Row>
61    <Row>
62        <Key
63            latin:keyStyle="numStarKeyStyle" />
64        <!-- Wait is a semicolon. -->
65        <Key
66            latin:code="59"
67            latin:keyLabel="@string/label_wait_key"
68            latin:keyLabelOption="followKeyHintLabelRatio" />
69        <Key
70            latin:keyLabel="#"
71            latin:keyStyle="numKeyStyle" />
72        <Key
73            latin:keyStyle="deleteKeyStyle"
74            latin:keyWidth="fillRight" />
75    </Row>
76    <Row>
77        <Key
78            latin:keyStyle="numSwitchToNumericKeyStyle" />
79        <Key
80            latin:keyLabel="+"
81            latin:keyStyle="numKeyStyle" />
82        <Key
83            latin:keyStyle="numSpaceKeyStyle" />
84        <Key
85            latin:keyStyle="returnKeyStyle"
86            latin:keyWidth="fillRight" />
87    </Row>
88</Keyboard>
89