123456789101112131415161718192021222324 |
- <?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:id="@+id/tysdkn_load_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal"
- android:paddingBottom="10dip"
- android:paddingTop="10dip"
- tools:ignore="UselessParent">
- <ProgressBar
- style="?android:attr/progressBarStyleLargeInverse"
- android:layout_width="30dp"
- android:layout_height="30dp" />
- <TextView
- tools:ignore="HardcodedText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="正在加载......"
- android:textSize="16sp" />
- </LinearLayout>
|