| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright (C) 2014 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. |
| --> |
| |
| <com.android.calculator2.DisplayMotionLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| android:id="@+id/main_calculator" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:orientation="vertical" |
| app:layoutDescription="@xml/activity_calculator_scene"> |
| |
| <FrameLayout |
| android:id="@+id/history_frame" |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| app:layout_constraintBottom_toTopOf="parent" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toTopOf="parent" /> |
| |
| <include |
| android:id="@+id/display" |
| layout="@layout/display_two_line" |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintHeight_percent="@dimen/layout_display_ratio" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toTopOf="parent" /> |
| |
| <include |
| android:id="@+id/advanced_pad" |
| layout="@layout/advanced_pad" |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintHeight_percent="@dimen/layout_advanced_pad_ratio" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toBottomOf="@id/display" /> |
| |
| <include |
| android:id="@+id/input_pad" |
| layout="@layout/input_pad" |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintHeight_percent="@dimen/layout_input_pad_ratio" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toBottomOf="@id/advanced_pad" /> |
| |
| <FrameLayout |
| android:id="@+id/animation_helper" |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| app:layout_constraintEnd_toEndOf="parent" |
| app:layout_constraintHeight_percent="@dimen/layout_pads_ratio" |
| app:layout_constraintStart_toStartOf="parent" |
| app:layout_constraintTop_toBottomOf="parent" /> |
| |
| </com.android.calculator2.DisplayMotionLayout> |