You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

area_input.xml 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/layout_area_root"
  6. android:layout_width="fill_parent"
  7. android:layout_height="fill_parent"
  8. android:orientation="vertical"
  9. android:padding="10dp" >
  10. <TextView
  11. android:id="@+id/areaTitle"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_marginStart="5dp"
  15. android:layout_marginLeft="5dp"
  16. android:layout_marginTop="5dp"
  17. android:text="Grundstück"
  18. android:textAppearance="?android:attr/textAppearanceLarge"
  19. app:layout_constraintStart_toStartOf="parent"
  20. app:layout_constraintTop_toTopOf="parent" />
  21. <EditText
  22. android:id="@+id/areaTitleUserInput"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_marginStart="5dp"
  26. android:layout_marginLeft="5dp"
  27. android:layout_marginEnd="5dp"
  28. android:layout_marginRight="5dp"
  29. android:hint="Titel eingeben!"
  30. app:layout_constraintEnd_toEndOf="parent"
  31. app:layout_constraintStart_toStartOf="parent"
  32. app:layout_constraintTop_toBottomOf="@+id/areaTitle">
  33. <requestFocus />
  34. </EditText>
  35. <TextView
  36. android:id="@+id/areaManagementNotice"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_marginStart="5dp"
  40. android:layout_marginLeft="5dp"
  41. android:layout_marginTop="15dp"
  42. android:text="Beschreibung"
  43. android:textAppearance="?android:attr/textAppearanceLarge"
  44. app:layout_constraintStart_toStartOf="parent"
  45. app:layout_constraintTop_toBottomOf="@+id/areaTitleUserInput" />
  46. <EditText
  47. android:id="@+id/areaManagementNoticeUserInput"
  48. android:layout_width="match_parent"
  49. android:layout_height="150dp"
  50. android:layout_marginStart="5dp"
  51. android:layout_marginLeft="5dp"
  52. android:layout_marginEnd="5dp"
  53. android:layout_marginRight="5dp"
  54. android:cursorVisible="true"
  55. android:hint="Beschreibung eingeben!"
  56. android:isScrollContainer="true"
  57. app:layout_constraintEnd_toEndOf="parent"
  58. app:layout_constraintStart_toStartOf="parent"
  59. app:layout_constraintTop_toBottomOf="@+id/areaManagementNotice">
  60. </EditText>
  61. <Button
  62. android:id="@+id/areaStartTracking"
  63. android:layout_width="match_parent"
  64. android:layout_height="wrap_content"
  65. android:layout_marginStart="5dp"
  66. android:layout_marginLeft="5dp"
  67. android:layout_marginTop="15dp"
  68. android:layout_marginEnd="5dp"
  69. android:layout_marginRight="5dp"
  70. android:text="Grundstücksaufnahme Starten!"
  71. app:layout_constraintEnd_toEndOf="parent"
  72. app:layout_constraintStart_toStartOf="parent"
  73. app:layout_constraintTop_toBottomOf="@+id/areaManagementNoticeUserInput" />
  74. <Button
  75. android:id="@+id/areaStopTracking"
  76. android:layout_width="match_parent"
  77. android:layout_height="wrap_content"
  78. android:layout_marginStart="5dp"
  79. android:layout_marginLeft="5dp"
  80. android:layout_marginTop="15dp"
  81. android:layout_marginEnd="5dp"
  82. android:layout_marginRight="5dp"
  83. android:text="Grundstücksaufnahme Beenden!"
  84. android:visibility="invisible"
  85. app:layout_constraintEnd_toEndOf="parent"
  86. app:layout_constraintStart_toStartOf="parent"
  87. app:layout_constraintTop_toBottomOf="@+id/areaManagementNoticeUserInput" />
  88. <Button
  89. android:id="@+id/areaAddGPSPoint"
  90. android:layout_width="0dp"
  91. android:layout_height="wrap_content"
  92. android:layout_marginStart="5dp"
  93. android:layout_marginLeft="5dp"
  94. android:layout_marginTop="5dp"
  95. android:layout_marginEnd="5dp"
  96. android:layout_marginRight="5dp"
  97. android:text="Grenzpunkt hinzufügen"
  98. app:layout_constraintEnd_toEndOf="parent"
  99. app:layout_constraintStart_toStartOf="parent"
  100. app:layout_constraintTop_toBottomOf="@+id/areaStartTracking" />
  101. </androidx.constraintlayout.widget.ConstraintLayout>