2019-05-24 12:35:46 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-19 15:11:41 +03:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-12-15 22:32:26 +03:00
|
|
|
android:id="@+id/coordinatorLayout"
|
2019-05-24 12:35:46 +03:00
|
|
|
android:layout_width="match_parent"
|
2019-11-26 19:25:26 +03:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/simpleFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2020-11-19 17:14:14 +03:00
|
|
|
<FrameLayout
|
2020-11-19 15:11:41 +03:00
|
|
|
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"
|
2020-11-19 17:14:14 +03:00
|
|
|
android:layout_height="40dp" />
|
2020-11-19 15:11:41 +03:00
|
|
|
|
2020-11-19 17:14:14 +03:00
|
|
|
</FrameLayout>
|
2020-11-19 15:11:41 +03:00
|
|
|
|
2019-11-26 19:25:26 +03:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|