fan_dialog_view.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <RelativeLayout
  7. android:layout_width="180dp"
  8. android:layout_height="180dp"
  9. android:layout_centerInParent="true"
  10. android:background="@drawable/fanwei_loading_bg" >
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="fill_parent"
  14. android:layout_alignParentRight="true"
  15. android:layout_alignParentTop="true"
  16. android:gravity="center"
  17. android:orientation="vertical" >
  18. <ProgressBar
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_gravity="center_horizontal" />
  22. <TextView
  23. android:id="@+id/fan_text_loading"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_marginTop="10dp"
  27. android:text="@string/processing"
  28. android:textColor="#fff"
  29. android:textSize="16sp" />
  30. </LinearLayout>
  31. </RelativeLayout>
  32. </RelativeLayout>