EtchDroid/app/src/main/res/layout/do_not_show_again.xml
2018-09-30 18:12:21 +02:00

17 lines
731 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="10dp"
android:theme="@style/CardContentStyle">
<CheckBox
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/do_not_show_again"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/do_not_show_again"
android:layout_marginStart="10dp">
</CheckBox>
</LinearLayout>