24 lines
757 B
XML
24 lines
757 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:padding="20dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<ProgressBar
|
||
|
|
android:layout_width="40dp"
|
||
|
|
android:layout_height="40dp"
|
||
|
|
android:indeterminate="true" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/loading_text"
|
||
|
|
android:layout_marginStart="10dp"
|
||
|
|
android:text="Loading..."
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:textColor="#000"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
</LinearLayout>
|