2023-04-24 13:08:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
|
|
2023-05-03 21:49:18 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2023-05-14 20:16:02 +02:00
|
|
|
android:layout_height="wrap_content">
|
2023-05-03 21:49:18 +02:00
|
|
|
|
2023-05-14 20:16:02 +02:00
|
|
|
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
|
2023-05-03 21:49:18 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-05-14 20:16:02 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"/>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
2023-05-20 22:03:51 +02:00
|
|
|
style="@style/SheetCloseButton"
|
2023-05-14 20:16:02 +02:00
|
|
|
android:id="@+id/button_cancel"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2023-05-20 22:03:51 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2023-05-03 21:49:18 +02:00
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2023-04-24 13:08:03 +02:00
|
|
|
|
2023-05-23 08:35:34 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2023-05-14 20:16:02 +02:00
|
|
|
android:id="@+id/text_header"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="22sp"
|
|
|
|
|
android:paddingHorizontal="24dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
2023-05-23 08:35:34 +02:00
|
|
|
app:fontFamily="@font/lato_bolditalic"
|
2023-05-14 20:16:02 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/button_cancel"/>
|
|
|
|
|
|
2023-04-24 13:08:03 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:scrollbars="vertical">
|
|
|
|
|
|
2023-05-23 08:35:34 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2023-04-24 13:08:03 +02:00
|
|
|
android:id="@+id/text_content"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="24dp"
|
|
|
|
|
android:layout_marginBottom="24dp"/>
|
|
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|