27 lines
933 B
XML
27 lines
933 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/dialog_waiting"
|
|
android:gravity="center_vertical"
|
|
android:paddingHorizontal="20dp"
|
|
android:paddingVertical="15dp">
|
|
|
|
<ProgressBar
|
|
android:layout_width="39dp"
|
|
android:layout_height="39dp"
|
|
android:indeterminateTint="@color/teal_200"
|
|
android:indeterminateTintMode="src_atop"
|
|
android:focusable="false"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvTip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="请稍后……"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginStart="10dp"
|
|
android:textColor="@color/white"
|
|
android:textSize="26sp" />
|
|
|
|
</LinearLayout> |