1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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       android:layout_width="match_parent"
19       android:layout_height="match_parent">
20
21    <TextView
22        android:id="@+id/hours_tens"
23        style="@style/timer_setup_digit"
24        android:layout_width="wrap_content"
25        android:layout_height="wrap_content"
26        android:ellipsize="none"
27        android:singleLine="true"
28        android:textColor="@color/clock_white"/>
29
30    <TextView
31        android:id="@+id/hours_ones"
32        style="@style/timer_setup_digit"
33        android:layout_width="wrap_content"
34        android:layout_height="wrap_content"
35        android:ellipsize="none"
36        android:singleLine="true"
37        android:textColor="@color/clock_white"/>
38
39    <TextView
40        android:id="@+id/hours_label"
41        style="@style/label"
42        android:layout_width="wrap_content"
43        android:layout_height="wrap_content"
44        android:layout_gravity="bottom"
45        android:contentDescription="@string/hours_label_description"
46        android:ellipsize="none"
47        android:singleLine="true"
48        android:text="@string/hours_label"
49        android:textColor="@color/clock_white"/>
50
51    <TextView
52        android:id="@+id/minutes_tens"
53        style="@style/timer_setup_digit"
54        android:layout_width="wrap_content"
55        android:layout_height="wrap_content"
56        android:ellipsize="none"
57        android:singleLine="true"
58        android:textColor="@color/clock_white"/>
59
60    <TextView
61        android:id="@+id/minutes_ones"
62        style="@style/timer_setup_digit"
63        android:layout_width="wrap_content"
64        android:layout_height="wrap_content"
65        android:ellipsize="none"
66        android:singleLine="true"
67        android:textColor="@color/clock_white"/>
68
69    <TextView
70        android:id="@+id/minutes_label"
71        style="@style/label"
72        android:layout_width="wrap_content"
73        android:layout_height="wrap_content"
74        android:layout_gravity="bottom"
75        android:contentDescription="@string/minutes_label_description"
76        android:ellipsize="none"
77        android:singleLine="true"
78        android:text="@string/minutes_label"
79        android:textColor="@color/clock_white"/>
80
81    <TextView
82        android:id="@+id/seconds"
83        style="@style/timer_setup_digit"
84        android:layout_width="wrap_content"
85        android:layout_height="wrap_content"
86        android:layout_gravity="bottom"
87        android:ellipsize="none"
88        android:singleLine="true"
89        android:textColor="@color/clock_white"/>
90
91    <TextView
92        android:id="@+id/seconds_label"
93        style="@style/label"
94        android:layout_width="wrap_content"
95        android:layout_height="wrap_content"
96        android:layout_gravity="bottom"
97        android:contentDescription="@string/seconds_label_description"
98        android:ellipsize="none"
99        android:singleLine="true"
100        android:text="@string/seconds_label"
101        android:textColor="@color/clock_white"/>
102
103</merge>
104