maintain_executing_dialog.xml 1018 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:gravity="center"
  4. android:orientation="vertical"
  5. android:id="@+id/layout_root"
  6. android:background="#88000000"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. <TextView
  10. android:textColor="@color/all_white"
  11. android:id="@+id/loading_tv"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="@string/str_executing" />
  15. <ProgressBar
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="50dp" />
  19. <Button
  20. android:textSize="18dp"
  21. android:gravity="center"
  22. android:id="@+id/close_btn"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_marginTop="10dp"
  26. android:text="@string/str_btn_close" />
  27. </LinearLayout>