123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?><!--
- ~ Copyright 2019, 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.
- -->
-
- <androidx.coordinatorlayout.widget.CoordinatorLayout
- 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_height="match_parent"
- android:layout_width="match_parent">
-
- <androidx.constraintlayout.widget.ConstraintLayout
-
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:id="@+id/rootLayout"
- tools:context=".ParametersActivity">
-
- <androidx.appcompat.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?attr/colorPrimary"
- android:elevation="4dp"
- android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
- app:menu="@menu/toolbar_menu"
- app:layout_constraintTop_toTopOf="parent"
- tools:targetApi="lollipop" />
-
- <androidx.coordinatorlayout.widget.CoordinatorLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- app:layout_constraintTop_toBottomOf="@id/toolbar"
- app:layout_constraintBottom_toBottomOf="parent"
- android:layout_weight="1"
- >
-
- <androidx.fragment.app.FragmentContainerView
- android:id="@+id/parameters_host_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="8dp"
- />
-
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
-
- </androidx.constraintlayout.widget.ConstraintLayout>
-
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
|