Archived
23 lines
817 B
XML
23 lines
817 B
XML
<?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">
|
||
|
|
|
||
|
|
<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>
|