VancedManager/app/src/main/res/layout/dialog_app_uninstall.xml

50 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".ui.dialogs.AppUninstallDialog"
android:keepScreenOn="true"
style="@style/DialogCard">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/app_uninstall_header"
style="@style/DialogCardTitle"
android:layout_gravity="center"
android:text="@string/uninstall"
android:textAlignment="center" />
<TextView
android:id="@+id/app_uninstall_message"
android:layout_marginTop="8dp"
android:text="@string/uninstall_app_text"
style="@style/DialogCardSubtitle"/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp" >
<com.vanced.manager.ui.core.ThemedOutlinedMaterialButton
android:id="@+id/app_uninstall_cancel"
style="@style/OutlinedButtonStyle"
android:layout_alignParentStart="true"
android:text="@string/cancel" />
<com.vanced.manager.ui.core.ThemedMaterialButton
android:id="@+id/app_uninstall_confirm"
style="@style/ButtonStyle"
android:layout_alignParentEnd="true"
android:text="@string/uninstall" />
</RelativeLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>