mirror of
https://github.com/element-hq/element-android
synced 2024-12-22 17:20:48 +03:00
28 lines
1,007 B
XML
28 lines
1,007 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:colorBackground"
|
|
android:minHeight="1dp"
|
|
android:orientation="vertical"
|
|
tools:viewBindingIgnore="true">
|
|
|
|
<TextView
|
|
android:id="@+id/loadingText"
|
|
style="@style/Widget.Vector.TextView.Subtitle"
|
|
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="?vctr_content_primary"
|
|
tools:text="Waiting message" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/loadingProgress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:padding="16dp" />
|
|
|
|
</LinearLayout>
|