23 lines
718 B
XML
23 lines
718 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:paddingTop="14dp"
|
||
|
|
android:paddingBottom="14dp">
|
||
|
|
|
||
|
|
<ProgressBar
|
||
|
|
android:id="@+id/progress"
|
||
|
|
android:layout_width="20dp"
|
||
|
|
android:layout_height="20dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tvLoading"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="10dp"
|
||
|
|
android:text="Loading..."
|
||
|
|
android:textSize="12sp"
|
||
|
|
android:textColor="#666666" />
|
||
|
|
</LinearLayout>
|