Files
AndroidJava/dash-wallet/wallet/res/layout/sweep_wallet_decrypt_dialog.xml
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

47 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp">
<TextView
android:id="@+id/dialog_title"
style="@style/Subtitle1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:gravity="center"
android:textAlignment="gravity"
android:text="@string/sweep_wallet_fragment_encrypted"/>
<EditText
android:id="@+id/sweep_wallet_fragment_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:hint="@string/sweep_wallet_fragment_password"
android:inputType="textPassword"
android:singleLine="true"
style="@style/Body2.Medium"/>
<TextView
android:id="@+id/sweep_wallet_fragment_bad_password"
android:text="@string/sweep_wallet_fragment_bad_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:visibility="gone"
style="@style/Overline.SemiBold.Red"
tools:visibility="visible"/>
<Button
android:id="@+id/dialog_positive_button"
style="@style/Button.Primary.Blue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="@string/sweep_wallet_fragment_button_decrypt"/>
</LinearLayout>