loading_dialog.xml 914 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/loadingLayout"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="horizontal" >
  7. <ProgressBar
  8. android:id="@+id/loadingBar"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_gravity="center_vertical"
  12. android:layout_marginBottom="10dp"
  13. android:layout_marginLeft="10dp"
  14. android:layout_marginRight="5dp"
  15. android:layout_marginTop="10dp" />
  16. <TextView
  17. android:id="@+id/loadingText"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center_vertical"
  21. android:layout_marginRight="20dp"
  22. android:text="TextView" />
  23. </LinearLayout>