kg_password_kbd_numeric.xml revision 3af630c8d18bcf4b23a5a308917319dd04cc8ed2
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<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
21    android:keyWidth="33.33%p"
22    android:horizontalGap="@dimen/kg_key_horizontal_gap"
23    android:verticalGap="@dimen/kg_key_vertical_gap"
24    android:keyHeight="@dimen/kg_pin_key_height">
25
26    <Row android:rowEdgeFlags="top">
27        <Key android:codes="49" android:keyIcon="@*android:drawable/sym_keyboard_num1"
28             android:keyEdgeFlags="left"/>
29        <Key android:codes="50" android:keyIcon="@*android:drawable/sym_keyboard_num2"/>
30        <Key android:codes="51" android:keyIcon="@*android:drawable/sym_keyboard_num3"
31             android:keyEdgeFlags="right"/>
32    </Row>
33
34    <Row>
35        <Key android:codes="52" android:keyIcon="@*android:drawable/sym_keyboard_num4"
36             android:keyEdgeFlags="left"/>
37        <Key android:codes="53" android:keyIcon="@*android:drawable/sym_keyboard_num5"/>
38        <Key android:codes="54" android:keyIcon="@*android:drawable/sym_keyboard_num6"
39             android:keyEdgeFlags="right"/>
40    </Row>
41
42    <Row>
43        <Key android:codes="55" android:keyIcon="@*android:drawable/sym_keyboard_num7"
44             android:keyEdgeFlags="left"/>
45        <Key android:codes="56" android:keyIcon="@*android:drawable/sym_keyboard_num8"/>
46        <Key android:codes="57" android:keyIcon="@*android:drawable/sym_keyboard_num9"
47             android:keyEdgeFlags="right"/>
48    </Row>
49
50    <Row android:rowEdgeFlags="bottom">
51        <Key android:codes="48" android:keyIcon="@*android:drawable/sym_keyboard_num0_no_plus"
52             android:keyWidth="33.33%p"
53             android:keyEdgeFlags="left"/>
54        <Key android:codes="10" android:keyIcon="@*android:drawable/sym_keyboard_enter"
55             android:keyWidth="66.67%p"
56             android:keyEdgeFlags="right"/>
57    </Row>
58
59</Keyboard>
60