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"
|
2020-07-28 12:49:45 +03:00
|
|
|
android:minHeight="1dp"
|
2019-06-06 16:16:56 +03:00
|
|
|
android:background="?riotx_background"
|
2019-06-13 11:33:04 +03:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/loadingText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="@dimen/layout_vertical_margin"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="?riotx_text_primary"
|
|
|
|
android:textSize="16sp"
|
|
|
|
tools:text="Waiting message" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loadingProgress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:padding="16dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|