2019-01-04 14:42:09 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-01-08 19:17:25 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-01-04 14:42:09 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2019-09-26 16:58:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-07-23 17:34:38 +00:00
|
|
|
android:padding="24dp"
|
|
|
|
android:scrollbarStyle="outsideOverlay">
|
2019-01-04 14:42:09 +00:00
|
|
|
|
2019-01-08 19:17:25 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-01-04 14:42:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-07-23 17:34:38 +00:00
|
|
|
android:layout_height="wrap_content">
|
2019-01-08 19:17:25 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvMessage"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Message"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cbNotAgain"
|
2019-09-26 16:58:38 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-01-08 19:17:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:text="@string/title_no_ask_again"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvMessage" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</ScrollView>
|