2018-10-19 16:30:40 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-06-13 11:33:04 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-19 16:30:40 +03:00
|
|
|
android:layout_width="match_parent"
|
2019-06-13 11:33:04 +03:00
|
|
|
android:layout_height="wrap_content"
|
2021-06-09 12:51:04 +03:00
|
|
|
android:background="?android:colorBackground"
|
2021-06-14 22:29:12 +03:00
|
|
|
android:minHeight="1dp"
|
2019-06-13 11:33:04 +03:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/loadingText"
|
2021-06-15 22:37:27 +03:00
|
|
|
style="@style/TextView.Vector.Subtitle"
|
2019-06-13 11:33:04 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="@dimen/layout_vertical_margin"
|
|
|
|
android:gravity="center"
|
2021-06-09 12:51:04 +03:00
|
|
|
android:textColor="?vctr_content_primary"
|
2019-06-13 11:33:04 +03:00
|
|
|
tools:text="Waiting message" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loadingProgress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:padding="16dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|