1234567891011121314151617181920212223 |
- <?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:gravity="center"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/pb_loading_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@drawable/pb_loading_white" />
- <TextView
- android:id="@+id/pb_loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dip"
- android:text="账号登录中"
- android:textColor="#fff" />
- </LinearLayout>
|