activity_result.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context=".ResultActivity" >
  6. <LinearLayout
  7. android:id="@+id/status"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:layout_gravity="center"
  12. android:gravity="center_horizontal"
  13. android:orientation="vertical"
  14. android:visibility="gone" >
  15. <ProgressBar
  16. style="?android:attr/progressBarStyleLarge"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_marginBottom="8dp" />
  20. <TextView
  21. android:id="@+id/status_message"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_marginBottom="16dp"
  25. android:fontFamily="sans-serif-light"
  26. android:text="Loading..."
  27. android:textAppearance="?android:attr/textAppearanceMedium" />
  28. </LinearLayout>
  29. <HorizontalScrollView
  30. android:id="@+id/search_form"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_below="@+id/tv_head" >
  34. <TableLayout
  35. android:layout_width="wrap_content"
  36. android:layout_height="fill_parent" >
  37. <TableRow
  38. android:id="@+id/tr_header"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content" >
  41. </TableRow>
  42. </TableLayout>
  43. </HorizontalScrollView>
  44. <TextView
  45. android:id="@+id/tv_head"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:layout_alignParentTop="true"
  49. android:layout_centerHorizontal="true"
  50. android:text="Show count here"
  51. android:textAppearance="?android:attr/textAppearanceLarge" />
  52. </RelativeLayout>