mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 17:33:22 +00:00
126 lines
5.8 KiB
XML
126 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
app:strokeWidth="0dp"
|
|
app:cardCornerRadius="0dp"
|
|
app:cardBackgroundColor="@color/window_background"
|
|
android:layout_height="match_parent">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/toolbar_cardview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:cardBackgroundColor="@color/gray_2_alpha"
|
|
app:cardCornerRadius="0dp"
|
|
app:strokeWidth="0dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageButton
|
|
android:id="@+id/back_imagebutton"
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="@dimen/button_padding_small"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:padding="8dp"
|
|
android:src="?attr/homeAsUpIndicator" />
|
|
|
|
<TextView
|
|
android:id="@+id/confirm_action_textview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="10dp"
|
|
android:alpha=".4"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:fontFamily="@string/font_family_medium"
|
|
android:padding="8dp"
|
|
android:text="@string/delete_account"
|
|
android:textColor="@color/gray_300"
|
|
android:textSize="18sp" />
|
|
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/toolbar_cardview"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title_textview"
|
|
style="@style/DialogHabiticaAccountTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/spacing_large"
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
|
android:text="@string/are_you_sure_you_want_to_delete" />
|
|
|
|
<TextView
|
|
android:id="@+id/warning_description_textview"
|
|
style="@style/DialogHabiticaAccountBody"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/title_textview"
|
|
android:layout_marginStart="@dimen/spacing_large"
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
|
android:text="@string/delete_account_description" />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/confirmation_text_input_layout"
|
|
style="@style/DialogHabiticaAccountInputLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/warning_description_textview"
|
|
android:layout_marginStart="@dimen/spacing_large"
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
|
android:background="@drawable/layout_rounded_bg_window"
|
|
android:hint="@string/password"
|
|
android:textColorHint="@color/text_secondary"
|
|
app:hintTextAppearance="@style/DialogHabiticaAccountHintLabel"
|
|
app:hintTextColor="@color/text_primary">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/confirmation_input_edittext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:inputType="textPassword"
|
|
android:paddingStart="@dimen/spacing_large"
|
|
android:paddingEnd="@dimen/spacing_large"
|
|
android:textColor="@color/text_primary"
|
|
android:textColorHint="@color/text_secondary"
|
|
android:textSize="20sp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<Button
|
|
android:id="@+id/forgot_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/forgot_pw_btn"
|
|
style="@style/HabiticaButton.Borderless"
|
|
android:textColor="@color/text_primary"
|
|
android:paddingStart="@dimen/spacing_large"
|
|
android:paddingEnd="@dimen/spacing_large"
|
|
android:paddingTop="@dimen/spacing_large"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|