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"
|
|
|
|
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
|
|
|
|
2020-12-16 14:39:22 +03:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
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>
|