/WebAccess/res/layout/installing.xml

http://eyes-free.googlecode.com/ · XML · 33 lines · 24 code · 9 blank · 0 comment · 0 complexity · 5d74497d280caa6b0c36355fd2081d2a MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@+id/root" android:layout_width="fill_parent"
  5. android:background="#ff000000"
  6. android:layout_height="fill_parent">
  7. <LinearLayout android:id="@+id/progress_indicator"
  8. android:orientation="vertical"
  9. android:layout_centerInParent="true"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content">
  12. <TextView android:paddingTop="5dip"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="center"
  16. android:text="Loading..." android:textSize="18sp"
  17. android:textColor="?android:attr/textColorPrimary" />
  18. <ProgressBar android:id="@android:id/progress"
  19. style="?android:attr/progressBarStyleLarge"
  20. android:layout_gravity="center"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content" />
  23. </LinearLayout>
  24. </RelativeLayout>