password_kbd_numeric.xml revision 0b31970cac04259a6e20dfc6d6e42cd9532528e3
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="2px"
23    android:verticalGap="0px"
24    android:keyHeight="@dimen/password_keyboard_key_height"
25    >
26
27    <Row>
28        <Key android:codes="49" android:keyIcon="@drawable/sym_keyboard_num1" android:keyEdgeFlags="left"/>
29        <Key android:codes="50" android:keyIcon="@drawable/sym_keyboard_num2"/>
30        <Key android:codes="51" android:keyIcon="@drawable/sym_keyboard_num3"/>
31    </Row>
32
33    <Row>
34        <Key android:codes="52" android:keyIcon="@drawable/sym_keyboard_num4" android:keyEdgeFlags="left"/>
35        <Key android:codes="53" android:keyIcon="@drawable/sym_keyboard_num5"/>
36        <Key android:codes="54" android:keyIcon="@drawable/sym_keyboard_num6"/>
37    </Row>
38
39    <Row>
40        <Key android:codes="55" android:keyIcon="@drawable/sym_keyboard_num7" android:keyEdgeFlags="left"/>
41        <Key android:codes="56" android:keyIcon="@drawable/sym_keyboard_num8"/>
42        <Key android:codes="57" android:keyIcon="@drawable/sym_keyboard_num9"/>
43    </Row>
44
45    <Row android:rowEdgeFlags="bottom">
46        <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"/>
47        <Key android:codes="48" android:keyIcon="@drawable/sym_keyboard_num0_no_plus"/>
48        <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete"
49            android:iconPreview="@drawable/sym_keyboard_feedback_delete"
50            android:isRepeatable="true" android:keyEdgeFlags="right"/>
51    </Row>
52
53</Keyboard>
54