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/password_keyboard_horizontalGap"
23    android:verticalGap="@dimen/password_keyboard_verticalGap"
24    android:keyHeight="@dimen/password_keyboard_key_height_numeric"
25    >
26
27    <Row android:rowEdgeFlags="top">
28        <Key android:codes="49" android:keyIcon="@drawable/sym_keyboard_num1"
29             android:keyEdgeFlags="left"/>
30        <Key android:codes="50" android:keyIcon="@drawable/sym_keyboard_num2"/>
31        <Key android:codes="51" android:keyIcon="@drawable/sym_keyboard_num3"
32             android:keyEdgeFlags="right"/>
33    </Row>
34
35    <Row>
36        <Key android:codes="52" android:keyIcon="@drawable/sym_keyboard_num4"
37             android:keyEdgeFlags="left"/>
38        <Key android:codes="53" android:keyIcon="@drawable/sym_keyboard_num5"/>
39        <Key android:codes="54" android:keyIcon="@drawable/sym_keyboard_num6"
40             android:keyEdgeFlags="right"/>
41    </Row>
42
43    <Row>
44        <Key android:codes="55" android:keyIcon="@drawable/sym_keyboard_num7"
45             android:keyEdgeFlags="left"/>
46        <Key android:codes="56" android:keyIcon="@drawable/sym_keyboard_num8"/>
47        <Key android:codes="57" android:keyIcon="@drawable/sym_keyboard_num9"
48             android:keyEdgeFlags="right"/>
49    </Row>
50
51    <Row android:rowEdgeFlags="bottom">
52        <Key android:codes="48" android:keyIcon="@drawable/sym_keyboard_num0_no_plus"
53             android:keyWidth="66.66%p" android:keyEdgeFlags="left"/>
54        <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_enter"
55             android:keyEdgeFlags="right"/>
56    </Row>
57
58</Keyboard>
59