apkfuckery/com.discord/res/layout/view_dialog_confirmation.xml

13 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout style="@style/UiKit.ViewGroup.Page.LinearLayout"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:id="@id/view_dialog_confirmation_header" android:padding="16.0dip" android:layout_width="fill_parent" style="@style/UiKit.TextView.H1.Bold" />
<View style="@style/UiKit.Divider" />
<TextView android:id="@id/view_dialog_confirmation_text" android:text="@string/sample_confirmation" style="@style/UiKit.Settings.Item.SubText" />
<View style="@style/UiKit.Settings.Divider" />
<View style="@style/UiKit.Divider" />
<LinearLayout style="@style/UiKit.Dialog.ButtonContainer">
<com.google.android.material.button.MaterialButton android:id="@id/view_dialog_confirmation_cancel" android:text="@string/cancel" style="@style/UiKit.Material.Button.Transparent.Fit" />
<com.google.android.material.button.MaterialButton android:id="@id/view_dialog_confirmation_confirm" android:text="@string/confirm" style="@style/UiKit.Material.Button.Fit" />
</LinearLayout>
</LinearLayout>