12345678910111213141516171819202122232425262728293031 |
- <?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:orientation="vertical">
- <LinearLayout
- android:id="@+id/footer_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="10dp"
- android:layout_marginTop="10dp"
- android:gravity="center"
- android:orientation="horizontal">
- <ProgressBar
- android:id="@+id/pb_footer"
- style="?android:attr/progressBarStyleSmall"
- android:indeterminateDrawable="@drawable/bssdk_dialog_loading_bg"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <TextView
- android:id="@+id/tv_footer"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="正在加载,请稍等。。。"
- android:textColor="@color/white"/>
- </LinearLayout>
- </LinearLayout>
|