2020-05-28 11:25:04 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-10 21:25:00 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-05-28 11:25:04 +03:00
|
|
|
android:layout_width="match_parent"
|
2020-12-16 14:39:22 +03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2020-05-28 11:25:04 +03:00
|
|
|
|
2021-06-10 21:25:00 +03:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2020-12-16 14:39:22 +03:00
|
|
|
android:layout_width="match_parent"
|
2021-06-10 21:25:00 +03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2020-05-28 11:25:04 +03:00
|
|
|
|
2020-12-16 14:39:22 +03:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2020-05-28 11:25:04 +03:00
|
|
|
|
|
|
|
</LinearLayout>
|