Ola_Mundo

content_addtreepg6.xml

Jun 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 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. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  9. xmlns:tools="http://schemas.android.com/tools"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:paddingLeft="@dimen/activity_horizontal_margin"
  13. android:paddingRight="@dimen/activity_horizontal_margin"
  14. android:paddingTop="@dimen/activity_vertical_margin"
  15. android:paddingBottom="@dimen/activity_vertical_margin"
  16. tools:context=".AddTreeActivity"
  17. android:orientation="vertical"
  18. android:weightSum="1">
  19. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  20. android:layout_width="match_parent" android:layout_height="match_parent">
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="Distância F. Primária"
  25. android:textSize="25dp"
  26. android:id="@+id/lblTxtFPrimaria"
  27. />
  28. <EditText
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:ems="10"
  32. android:layout_below="@id/lblTxtFPrimaria"
  33. android:id="@+id/floatFPrimaria"
  34. />
  35.  
  36.  
  37. </RelativeLayout>
  38. <RelativeLayout
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content">
  41. <TextView
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:text="Distância F. Secundária"
  45. android:textSize="25dp"
  46. android:id="@+id/lblTxtFSecundaria"
  47. />
  48. <EditText
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:ems="10"
  52. android:layout_below="@id/lblTxtFSecundaria"
  53. />
  54.  
  55. </RelativeLayout>
  56. <RelativeLayout
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content">
  59. <TextView
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:text="Distância da Derivação"
  63. android:id="@+id/lblTxtDeriv"
  64. android:textSize="25dp"
  65. />
  66. <EditText
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:ems="10"
  70. android:layout_below="@+id/lblTxtDeriv"
  71. />
  72. </RelativeLayout>
  73. <RelativeLayout
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content">
  76. <TextView
  77. android:layout_width="wrap_content"
  78. android:layout_height="wrap_content"
  79. android:text="Distância outro Conflito"
  80. android:textSize="25dp"
  81. android:id="@+id/lblTxtConfl"
  82. />
  83. <EditText
  84. android:layout_width="wrap_content"
  85. android:layout_height="wrap_content"
  86. android:ems="10"
  87. android:layout_below="@+id/lblTxtConfl"/>
  88. </RelativeLayout>
  89. </LinearLayout>
  90. </ScrollView>
Add Comment
Please, Sign In to add comment