mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textSize="20sp" />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout style="@style/CustomDialogTextInputLayout">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/delete_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/password"
|
|
android:inputType="textPassword"
|
|
android:padding="12dp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/cancel_button"
|
|
style="@style/CustomDialogButton"
|
|
android:text="@string/cancel" />
|
|
|
|
<Button
|
|
android:id="@+id/delete_account_confirm"
|
|
style="@style/CustomDialogButton"
|
|
android:layout_marginRight="16dp"
|
|
android:text="@string/deleteAccount" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|