2021-03-04 21:18:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-03-10 21:13:55 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-04 21:18:38 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".ui.Schlafzimmer.SchlafzimmerFragment"
|
|
|
|
android:background="@drawable/background">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_flur"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:gravity="center_horizontal"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:textSize="20sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-03-29 18:11:32 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
2021-03-04 21:18:38 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|