mirror of
https://github.com/element-hq/element-android
synced 2024-12-22 17:20:48 +03:00
30 lines
No EOL
1.1 KiB
XML
30 lines
No EOL
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/coordinatorLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/simpleFragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/simpleActivityWaitingView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:background="?attr/colorBackgroundFloating"
|
|
android:gravity="center"
|
|
android:padding="8dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<ProgressBar
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |