24 lines
820 B
XML
Executable File
24 lines
820 B
XML
Executable File
<?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="match_parent"
|
|
android:background="#25ffffff"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="10dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/progress_view"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:src="@drawable/load" />
|
|
|
|
<TextView
|
|
android:id="@+id/progress_message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="center"
|
|
android:text="正在加载..."
|
|
android:textSize="16sp" />
|
|
</LinearLayout> |