66 lines
2.2 KiB
XML
66 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin">
|
|
|
|
<TextView
|
|
android:id="@+id/tvOldPIN"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/old_pin"
|
|
android:textStyle="bold"/>
|
|
|
|
<EditText
|
|
android:id="@+id/etOldPin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/edittext_bg"
|
|
android:inputType="number"
|
|
android:maxLines="1"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/txt_6_digits_pin"
|
|
android:textStyle="bold"/>
|
|
|
|
<EditText
|
|
android:id="@+id/etPin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/edittext_bg"
|
|
android:inputType="number"
|
|
android:maxLines="1"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/txt_6_digits_pin_confirm"
|
|
android:textStyle="bold"/>
|
|
|
|
<EditText
|
|
android:id="@+id/etPinConfirmation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/edittext_bg"
|
|
android:inputType="number"
|
|
android:maxLines="1"
|
|
android:singleLine="true"/>
|
|
|
|
<Button
|
|
android:id="@+id/btnEdit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/txt_edit"/>
|
|
</LinearLayout>
|
|
|