activity_result.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <TableLayout
  34. android:layout_width="wrap_content"
  35. android:layout_height="fill_parent" >
  36. <TableRow
  37. android:id="@+id/tr_count"
  38. android:layout_width="fill_parent"
  39. android:layout_height="wrap_content"
  40. android:gravity="center_horizontal" >
  41. <TextView
  42. android:id="@+id/textView1"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:text="Large Text"
  46. android:textAppearance="?android:attr/textAppearanceLarge" />
  47. </TableRow>
  48. <TableRow
  49. android:id="@+id/tr_header"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content" >
  52. </TableRow>
  53. </TableLayout>
  54. </HorizontalScrollView>
  55. </RelativeLayout>