discord-jadx/app/src/main/res/layout/view_dialog_confirmation.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

12 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/UiKit_ViewGroup_Page_LinearLayout">
<TextView android:id="@+id/view_dialog_confirmation_header" android:padding="16dp" android:layout_width="match_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>