Advertisement
Guest User

Untitled

a guest
Jan 5th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:scrollbars="vertical"
  4. android:layout_height="fill_parent"
  5. android:layout_width="fill_parent">
  6.  
  7. <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:stretchColumns="1">
  11.  
  12. <TableRow>
  13. <TextView
  14. android:text="Aansluitingen"
  15. style="@style/FormTextRegular" />
  16. <TextView
  17. android:text="Goed"
  18. style="@style/FormTextRegular" />
  19. <TextView
  20. android:text="Fout"
  21. style="@style/FormTextRegular" />
  22. <TextView
  23. android:text="Hersteld"
  24. style="@style/FormTextRegular" />
  25. </TableRow>
  26.  
  27. <TableRow>
  28. <TextView
  29. android:text="Elektrisch"
  30. style="@style/FormTextRegular" />
  31.  
  32. <CheckBox
  33. android:id="@+id/checkBoxElektrischGoed"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:text="" />
  37. <CheckBox
  38. android:id="@+id/checkBoxElektrischFout"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="" />
  42. <CheckBox
  43. android:id="@+id/checkBoxElektrischHersteld"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:text="" />
  47. </TableRow>
  48.  
  49. <TableRow>
  50. <TextView
  51. android:text="Gas"
  52. style="@style/FormTextRegular" />
  53.  
  54. <CheckBox
  55. android:id="@+id/checkBoxGasGoed"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:text="" />
  59. <CheckBox
  60. android:id="@+id/checkBoxGasFout"
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:text="" />
  64. <CheckBox
  65. android:id="@+id/checkBoxGasHersteld"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:text="" />
  69. </TableRow>
  70.  
  71. <TableRow>
  72. <TextView
  73. android:text="Water"
  74. style="@style/FormTextRegular" />
  75.  
  76. <CheckBox
  77. android:id="@+id/checkBoxWaterGoed"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:text="" />
  81. <CheckBox
  82. android:id="@+id/checkBoxWaterFout"
  83. android:layout_width="wrap_content"
  84. android:layout_height="wrap_content"
  85. android:text="" />
  86. <CheckBox
  87. android:id="@+id/checkBoxWaterHersteld"
  88. android:layout_width="wrap_content"
  89. android:layout_height="wrap_content"
  90. android:text="" />
  91. </TableRow>
  92.  
  93. <TableRow>
  94. <TextView
  95. android:text="Rookgasafvoer"
  96. style="@style/FormTextRegular" />
  97.  
  98. <CheckBox
  99. android:id="@+id/checkBoxRookgasafvoerGoed"
  100. android:layout_width="wrap_content"
  101. android:layout_height="wrap_content"
  102. android:text="" />
  103. <CheckBox
  104. android:id="@+id/checkBoxRookgasafvoerFout"
  105. android:layout_width="wrap_content"
  106. android:layout_height="wrap_content"
  107. android:text="" />
  108. <CheckBox
  109. android:id="@+id/checkBoxRookgasafvoerHersteld"
  110. android:layout_width="wrap_content"
  111. android:layout_height="wrap_content"
  112. android:text="" />
  113. </TableRow>
  114.  
  115. </TableLayout>
  116. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement