2021-06-02 21:24:57 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2021-03-10 21:13:55 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-02 21:24:57 +02: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.kueche.KuecheFragment">
|
2021-06-02 21:12:07 +02:00
|
|
|
|
2021-06-02 21:24:57 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/Background"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:src="@drawable/background"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0" />
|
2021-06-02 21:12:07 +02:00
|
|
|
|
2021-03-04 21:18:38 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_kueche"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
2021-03-29 18:11:32 +02:00
|
|
|
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
|
|
|
|
2021-06-02 21:24:57 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|