1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2018 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License
15  -->
16
17<merge xmlns:android="http://schemas.android.com/apk/res/android"
18       xmlns:app="http://schemas.android.com/apk/res-auto">
19    <!-- Row 1 -->
20    <com.android.keyguard.NumPadKey
21        android:id="@+id/key1"
22        style="@style/NumPadKeyButton.land"
23        app:digit="1" />
24
25    <com.android.keyguard.NumPadKey
26        android:id="@+id/key2"
27        style="@style/NumPadKeyButton.land"
28        app:digit="2" />
29
30    <com.android.keyguard.NumPadKey
31        android:id="@+id/key3"
32        style="@style/NumPadKeyButton.land"
33        app:digit="3" />
34
35    <!-- Row 2 -->
36    <com.android.keyguard.NumPadKey
37        android:id="@+id/key4"
38        style="@style/NumPadKeyButton.land"
39        app:digit="4" />
40
41    <com.android.keyguard.NumPadKey
42        android:id="@+id/key5"
43        style="@style/NumPadKeyButton.land"
44        app:digit="5" />
45
46    <com.android.keyguard.NumPadKey
47        android:id="@+id/key6"
48        style="@style/NumPadKeyButton.land"
49        app:digit="6" />
50
51    <!-- Row 3 -->
52    <com.android.keyguard.NumPadKey
53        android:id="@+id/key7"
54        style="@style/NumPadKeyButton.land"
55        app:digit="7" />
56
57    <com.android.keyguard.NumPadKey
58        android:id="@+id/key8"
59        style="@style/NumPadKeyButton.land"
60        app:digit="8" />
61
62    <com.android.keyguard.NumPadKey
63        android:id="@+id/key9"
64        style="@style/NumPadKeyButton.land"
65        app:digit="9" />
66
67    <!-- Row 4 -->
68    <com.android.keyguard.NumPadButton
69        android:id="@+id/delete_button"
70        style="@style/NumPadKeyButton.land"
71        android:src="@drawable/ic_delete"
72        android:tint="@color/keyguard_keypad_image_color"
73        android:contentDescription="@string/keyboardview_keycode_delete" />
74
75    <com.android.keyguard.NumPadKey
76        android:id="@+id/key0"
77        style="@style/NumPadKeyButton.land"
78        app:digit="0" />
79
80    <com.android.keyguard.NumPadButton
81        android:id="@+id/key_enter"
82        style="@style/NumPadKeyButton.land"
83        android:src="@drawable/ic_enter"
84        android:tint="@color/keyguard_keypad_image_color"
85        android:contentDescription="@string/keyboardview_keycode_enter" />
86</merge>
87
88