loading_view.xml 826 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@android:color/white"
  6. android:clickable="true"
  7. android:gravity="center"
  8. android:orientation="vertical" >
  9. <ProgressBar
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:indeterminateOnly="true" />
  13. <!-- android:indeterminateDrawable="@drawable/gw_rotate_progress_dialog" -->
  14. <!--
  15. <TextView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="4dip"
  19. android:text="@string/loading"
  20. style="@style/MaxTextLightStyle" /> -->
  21. </LinearLayout>