ej_view_common_progress_dialog.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/ej_transparent">
  6. <LinearLayout
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical"
  10. android:layout_centerInParent="true">
  11. <ProgressBar
  12. android:id="@+id/ej_common_progress_dialog_pb"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="center"
  16. android:indeterminateBehavior="repeat"
  17. android:indeterminateDrawable="@drawable/ej_anim_loading"/>
  18. <TextView
  19. android:id="@+id/ej_common_progress_dialog_msg_tv"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:textSize="@dimen/sp_12"
  23. android:textColor="@color/ej_font_black"
  24. android:layout_marginTop="@dimen/dp_5"/>
  25. </LinearLayout>
  26. </RelativeLayout>