mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-06 16:27:38 +03:00
20 lines
561 B
XML
20 lines
561 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
style="@style/VectorToolbarStyle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/fragmentContainer"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
</LinearLayout>
|