2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2019-05-04 20:51:31 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textviewtitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:textSize="22sp"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:textColor="?attr/colorText"/>
|
|
|
|
|
|
2019-04-29 19:27:51 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingTop="8dp">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/dialogtext"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:textColor="?attr/colorText"
|
|
|
|
|
android:paddingStart="24dp"
|
|
|
|
|
android:paddingEnd="24dp"
|
|
|
|
|
android:paddingBottom="24dp"
|
|
|
|
|
android:paddingTop="8dp"/>
|
|
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|