element-android/vector/src/main/res/layout/item_loading.xml

29 lines
1,007 B
XML
Raw Normal View History

2018-10-19 16:30:40 +03:00
<?xml version="1.0" encoding="utf-8"?>
<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"
android:layout_height="wrap_content"
2021-06-09 12:51:04 +03:00
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"
2021-06-09 12:51:04 +03:00
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>