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.

task_input.xml 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_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/taskTitle"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="Aufgabe"
  14. android:textAppearance="?android:attr/textAppearanceLarge" />
  15. <EditText
  16. android:id="@+id/taskTitleUserInput"
  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/taskNotice"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:text="Notizen"
  27. android:textAppearance="?android:attr/textAppearanceLarge" />
  28. <EditText
  29. android:id="@+id/taskNoticeUserInput"
  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/taskSetLocation"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:text="Standort setzen!" />
  41. <TextView
  42. android:id="@+id/taskLocation"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:gravity="center"
  46. android:textAppearance="?android:attr/textAppearanceLarge" />
  47. <Button
  48. android:id="@+id/taskAddPicture"
  49. android:layout_width="match_parent"
  50. android:layout_height="wrap_content"
  51. android:text="Bild hinzufügen!" />
  52. <ImageView
  53. android:id="@+id/taskImage"
  54. android:layout_width="243dp"
  55. android:layout_height="149dp"
  56. android:layout_gravity="center"
  57. android:baselineAlignBottom="true"
  58. android:foregroundGravity="center_vertical|center_horizontal"
  59. app:srcCompat="@android:drawable/ic_menu_camera" />
  60. </LinearLayout>