17 lines
565 B
XML
17 lines
565 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:paddingTop="5dp"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp"
|
|
android:paddingBottom="0dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/do_not_show_this_again" />
|
|
</LinearLayout>
|