ytdlnis/app/src/main/res/layout/dialog_terminate_app.xml

23 lines
No EOL
758 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:padding="20dp"
android:orientation="vertical"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingHorizontal="5dp"
android:text="@string/confirm_terminate"
android:textStyle="bold" />
<CheckBox
android:id="@+id/doNotShowAgain"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:minWidth="0dp"
android:text="@string/dont_ask_again"/>
</LinearLayout>