29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="10dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingEnd="10dp"
|
|
android:paddingBottom="5dp"
|
|
android:background="@drawable/shape_dialog_small"
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
<ProgressBar
|
|
android:layout_width="26dp"
|
|
android:layout_height="26dp"
|
|
android:indeterminateTint="@color/white_f6" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvMessage"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:text="加载中……"
|
|
android:textColor="@color/white_f6"
|
|
android:textSize="14sp"
|
|
tools:ignore="HardcodedText" />
|
|
</LinearLayout> |