Advertisement
Ola_Mundo

content_addtreepg7.xml

Jun 30th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.55 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:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical"
  6. android:padding="10dp"
  7. android:fillViewport="false">
  8.  
  9. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  10. android:orientation="vertical" android:layout_width="fill_parent"
  11. android:layout_height="match_parent"
  12. android:weightSum="1">
  13.  
  14. <TextView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:textAppearance="?android:attr/textAppearanceMedium"
  18. android:text="Comprimento da Copa:"
  19. android:id="@+id/lblCC" />
  20.  
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:textAppearance="?android:attr/textAppearanceMedium"
  25. android:id="@+id/varCC" />
  26.  
  27. <Space
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:layout_gravity="center_horizontal"
  31. android:layout_marginTop="45dp" />
  32.  
  33. <TextView
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:textAppearance="?android:attr/textAppearanceMedium"
  37. android:text="DAP:"
  38. android:id="@+id/lblDAP" />
  39.  
  40. <TextView
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:textAppearance="?android:attr/textAppearanceMedium"
  44. android:id="@+id/varDAP" />
  45.  
  46. <Space
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_marginTop="45dp" />
  50.  
  51. <TextView
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:textAppearance="?android:attr/textAppearanceMedium"
  55. android:text="Volume Copa:"
  56. android:id="@+id/lblVC" />
  57.  
  58. <TextView
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:textAppearance="?android:attr/textAppearanceMedium"
  62. android:id="@+id/varVC" />
  63.  
  64. <Space
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_gravity="center_horizontal"
  68. android:layout_marginTop="45dp" />
  69.  
  70. <TextView
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"
  73. android:textAppearance="?android:attr/textAppearanceMedium"
  74. android:text="Área Copa:"
  75. android:id="@+id/lblAC" />
  76.  
  77. <TextView
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:textAppearance="?android:attr/textAppearanceMedium"
  81. android:id="@+id/varAC" />
  82.  
  83. <Space
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:layout_marginTop="45dp" />
  87.  
  88. <TextView
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:textAppearance="?android:attr/textAppearanceMedium"
  92. android:text="Diâmetro Base:"
  93. android:id="@+id/lblDB" />
  94.  
  95. <TextView
  96. android:layout_width="wrap_content"
  97. android:layout_height="wrap_content"
  98. android:textAppearance="?android:attr/textAppearanceMedium"
  99. android:id="@+id/varDB" />
  100.  
  101. <Space
  102. android:layout_width="match_parent"
  103. android:layout_height="wrap_content"
  104. android:layout_marginTop="45dp" />
  105.  
  106. <TextView
  107. android:layout_width="wrap_content"
  108. android:layout_height="wrap_content"
  109. android:textAppearance="?android:attr/textAppearanceMedium"
  110. android:text="IRQ:"
  111. android:id="@+id/lblIRQ" />
  112.  
  113. <TextView
  114. android:layout_width="wrap_content"
  115. android:layout_height="wrap_content"
  116. android:textAppearance="?android:attr/textAppearanceMedium"
  117. android:id="@+id/varIRQ" />
  118.  
  119. <Space
  120. android:layout_width="match_parent"
  121. android:layout_height="wrap_content"
  122. android:layout_marginTop="45dp" />
  123.  
  124. <TextView
  125. android:layout_width="wrap_content"
  126. android:layout_height="wrap_content"
  127. android:textAppearance="?android:attr/textAppearanceMedium"
  128. android:text="Hora de Cadastro:"
  129. android:id="@+id/lblHC" />
  130.  
  131. <TextView
  132. android:layout_width="wrap_content"
  133. android:layout_height="wrap_content"
  134. android:textAppearance="?android:attr/textAppearanceMedium"
  135. android:id="@+id/varHC" />
  136.  
  137. <Space
  138. android:layout_width="match_parent"
  139. android:layout_height="wrap_content"
  140. android:layout_gravity="center_horizontal"
  141. android:layout_marginTop="20dp" />
  142.  
  143. <Button
  144. android:layout_width="98dp"
  145. android:layout_height="match_parent"
  146. android:text="Salvar"
  147. android:id="@+id/btnSave"
  148. android:layout_gravity="center_horizontal" />
  149.  
  150. </LinearLayout>
  151. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement