forked from LibreMV/GridFlow
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Delete Subscription"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:layout_marginBottom="16dp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Are you sure you want to remove this subscription?"
|
|
android:textSize="16sp"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:layout_marginBottom="24dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="end">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_cancel"
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Cancel"
|
|
android:layout_marginEnd="8dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_yes"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Yes"
|
|
android:backgroundTint="?android:attr/colorError" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |