mirror of
https://github.com/element-hq/element-android
synced 2024-12-23 01:31:24 +03:00
26 lines
1 KiB
XML
26 lines
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/VectorToolbarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="4dp"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
|
|
|
<include layout="@layout/merge_overlay_waiting_view"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|