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 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/layout_area_root"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:orientation="vertical"
  8. android:padding="10dp" >
  9. <TextView
  10. android:id="@+id/areaTitle"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="Grundstück"
  14. android:textAppearance="?android:attr/textAppearanceLarge" />
  15. <EditText
  16. android:id="@+id/areaTitleUserInput"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:hint="Titel eingeben!">
  20. <requestFocus />
  21. </EditText>
  22. <TextView
  23. android:id="@+id/areaNotice"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:text="Beschreibung"
  27. android:textAppearance="?android:attr/textAppearanceLarge" />
  28. <EditText
  29. android:id="@+id/areaNoticeUserInput"
  30. android:layout_width="match_parent"
  31. android:layout_height="149dp"
  32. android:hint="Beschreibung eingeben!"
  33. android:isScrollContainer="true">
  34. <requestFocus />
  35. </EditText>
  36. <Button
  37. android:id="@+id/areaStartTracking"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:text="Grundstücksaufnahme Starten!" />
  41. <Button
  42. android:id="@+id/areaStopTracking"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:text="Grundstücksaufnahme Beenden!"
  46. android:visibility="invisible"/>
  47. </LinearLayout>