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_management_notice.xml 1.3KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <TextView
  8. android:id="@+id/areaManagementNotice"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginStart="5dp"
  12. android:layout_marginLeft="5dp"
  13. android:layout_marginTop="5dp"
  14. android:text="Neue Beschreibung"
  15. android:textAppearance="?android:attr/textAppearanceLarge"
  16. android:textStyle="bold"
  17. app:layout_constraintStart_toStartOf="parent"
  18. app:layout_constraintTop_toTopOf="parent" />
  19. <EditText
  20. android:id="@+id/areaManagementNoticeUserInput"
  21. android:layout_width="match_parent"
  22. android:layout_height="149dp"
  23. android:layout_marginStart="5dp"
  24. android:layout_marginLeft="5dp"
  25. android:hint="Neue Beschreibung eingeben!"
  26. android:isScrollContainer="true"
  27. app:layout_constraintStart_toStartOf="parent"
  28. app:layout_constraintTop_toBottomOf="@+id/areaManagementNotice">
  29. <requestFocus />
  30. </EditText>
  31. </androidx.constraintlayout.widget.ConstraintLayout>