bdp_paycenter_custom_progress.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal" >
  6. <View
  7. android:layout_width="250dp"
  8. android:layout_height="60dp"
  9. android:background="@drawable/bdp_paycenter_bg_loading" />
  10. <LinearLayout
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center"
  14. android:orientation="horizontal" >
  15. <ProgressBar
  16. android:id="@+id/bdp_paycenter_loadingImageView"
  17. android:layout_width="32dp"
  18. android:layout_height="32dp"
  19. android:indeterminate="false"
  20. android:indeterminateDrawable="@drawable/bdp_paycenter_loading_progress" />
  21. <TextView
  22. android:id="@+id/bdp_paycenter_tv_loading_msg"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_gravity="center_vertical"
  26. android:layout_marginLeft="8dp"
  27. android:textColor="@color/bdp_gamesdk_white"
  28. android:textSize="14sp" />
  29. </LinearLayout>
  30. </FrameLayout>