20 lines
648 B
XML
20 lines
648 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="@dimen/activity_vertical_margin">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dialog_license_confirmation_message"
|
|
android:layout_marginBottom="5dp" />
|
|
|
|
</RelativeLayout>
|
|
</androidx.core.widget.NestedScrollView>
|