| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2012 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <LinearLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| xmlns:tools="http://schemas.android.com/tools" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:gravity="center_horizontal" |
| android:paddingBottom="14dp" |
| android:layout_marginStart="24dp" |
| android:layout_marginEnd="24dp" |
| android:orientation="vertical"> |
| |
| <androidx.constraintlayout.widget.ConstraintLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_gravity="start"> |
| |
| <com.android.deskclock.AnalogClock |
| android:id="@+id/analog_clock" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="@dimen/circle_margin_top" |
| app:layout_constraintBottom_toBottomOf="parent" |
| app:layout_constraintDimensionRatio="1:1" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toTopOf="parent" |
| app:layout_constraintWidth_percent="@dimen/analog_clock_width_percent"/> |
| |
| <com.android.deskclock.widget.AutoSizingTextClock |
| android:id="@+id/digital_clock" |
| style="@style/display_time" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:ellipsize="none" |
| android:includeFontPadding="false" |
| android:paddingTop="@dimen/main_clock_digital_padding" |
| android:singleLine="true" |
| android:textSize="@dimen/main_clock_digital_font_size" |
| app:layout_constraintBottom_toBottomOf="parent" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toTopOf="parent" |
| tools:text="01:23"/> |
| |
| </androidx.constraintlayout.widget.ConstraintLayout> |
| |
| <include |
| layout="@layout/date_and_next_alarm_time" |
| android:id="@+id/date_and_next_alarm_time" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_gravity="start"/> |
| </LinearLayout> |