crystal-wallet-android/app/src/main/res/layout/dialog_password_input.xml

32 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tvPasswordInput"
android:layout_marginTop="30dp"
android:textSize="15dp"
android:textColor="@color/gray"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Enter password to restore backup:" />
<EditText
android:id="@+id/etPasswordInput"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tvPasswordInput"
android:layout_centerHorizontal="true"
android:ems="10"
android:inputType="textPassword" />
</RelativeLayout>
</android.support.constraint.ConstraintLayout>