pb_loading.xml 777 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:gravity="center"
  6. android:orientation="vertical" >
  7. <ImageView
  8. android:id="@+id/pb_loading_img"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_gravity="center"
  12. android:src="@drawable/pb_loading_white" />
  13. <TextView
  14. android:id="@+id/pb_loading_message"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginTop="5dip"
  18. android:text="账号登录中"
  19. android:textColor="#fff" />
  20. </LinearLayout>