kbd_phone_symbols.xml revision cd7b7d3e8febcfbcab4628d1fc5b87e809ce56cc
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="0px"
25    latin:verticalGap="@dimen/key_bottom_gap"
26    latin:keyHeight="@dimen/key_height"
27>
28    <Row
29        latin:rowEdgeFlags="top"
30    >
31        <Key
32            latin:keyLabel="("
33            latin:keyEdgeFlags="left" />
34        <Key
35            latin:keyLabel="/" />
36        <Key
37            latin:keyLabel=")" />
38        <Key
39            latin:keyLabel="-"
40            latin:keyWidth="20%p"
41            latin:isModifier="true"
42            latin:keyEdgeFlags="right" />
43    </Row>
44    <Row>
45        <Key
46            latin:keyLabel="N"
47            latin:keyEdgeFlags="left" />
48        <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 
49            has changed. -->
50        <Key
51            latin:codes="44"
52            latin:keyLabel="Pause" />
53        <Key
54            latin:keyLabel="," />
55        <Key
56            latin:keyLabel="."
57            latin:keyWidth="20%p"
58            latin:isModifier="true"
59            latin:keyEdgeFlags="right" />
60    </Row>
61    <Row>
62        <Key
63            latin:codes="42"
64            latin:keyIcon="@drawable/sym_keyboard_numstar"
65            latin:keyEdgeFlags="left" />
66        <!-- Wait is a semicolon. -->
67        <Key
68            latin:codes="59"
69            latin:keyLabel="Wait" />
70        <Key
71            latin:codes="35"
72            latin:keyIcon="@drawable/sym_keyboard_numpound" />
73        <Key
74            latin:codes="@integer/key_delete"
75            latin:keyIcon="@drawable/sym_keyboard_delete"
76            latin:iconPreview="@drawable/sym_keyboard_feedback_delete"
77            latin:keyWidth="20%p"
78            latin:isModifier="true"
79            latin:isRepeatable="true"
80            latin:keyEdgeFlags="right" />
81    </Row>
82    <Row
83        latin:rowEdgeFlags="bottom"
84    >
85        <Key
86            latin:codes="@integer/key_symbol"
87            latin:keyLabel="@string/label_phone_key"
88            latin:keyEdgeFlags="left" />
89        <Key
90            latin:keyLabel="+" />
91        <Key
92            latin:codes="@integer/key_space"
93            latin:keyIcon="@drawable/sym_keyboard_space"
94            latin:iconPreview="@drawable/sym_keyboard_feedback_space" />
95        <Key
96            latin:codes="@integer/key_return"
97            latin:keyIcon="@drawable/sym_keyboard_return"
98            latin:keyWidth="20%p"
99            latin:isModifier="true"
100            latin:keyEdgeFlags="right" />
101    </Row>
102</Keyboard>
103