2017-10-01 01:52:34 +00:00
|
|
|
<?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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:orientation="vertical"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:paddingBottom="0dp"
|
|
|
|
android:paddingLeft="0dp"
|
|
|
|
android:paddingRight="0dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:paddingTop="@dimen/activity_vertical_margin">
|
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<TextView
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/tvPin"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:text="@string/txt_6_digits_pin"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:textStyle="bold" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etPin"
|
|
|
|
android:layout_width="match_parent"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:background="@drawable/edittext_bg"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:inputType="number"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:maxLines="1"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:textColor="@color/black" />
|
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<TextView
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/tvPinError"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvPinConfirmation"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:text="@string/txt_6_digits_pin_confirm"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:textStyle="bold" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etPinConfirmation"
|
|
|
|
android:layout_width="match_parent"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:background="@drawable/edittext_bg"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:inputType="number"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:maxLines="1"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="@color/black" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/tvPinConfirmationError"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:text="@string/seed_words"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:textStyle="bold" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etSeedWords"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="120dp"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:background="@drawable/edittext_bg"
|
|
|
|
android:gravity="top"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/black" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:text="@string/txt_account_name"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:textStyle="bold" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etAccountName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:background="@drawable/edittext_bg"
|
|
|
|
android:gravity="top"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/black" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<TextView
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/tvAccountNameError"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:text="@string/txt_brain_key_info"
|
|
|
|
android:textSize="15dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:visibility="gone" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_marginTop="10dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<Button
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/btnCancel"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:background="@color/pink"
|
|
|
|
android:text="@string/cancel"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<Button
|
2017-10-05 02:46:55 +00:00
|
|
|
android:id="@+id/btnImport"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_gravity="center"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_margin="10dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:background="@color/green"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:padding="10dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:text="@string/create_wallet"
|
|
|
|
android:textColor="@color/white" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/white"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:gravity="bottom"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:orientation="vertical">
|
2017-10-05 02:46:55 +00:00
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:background="@color/black"></LinearLayout>
|
|
|
|
|
2017-10-01 01:52:34 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="35dp"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:background="@color/bottomBarColor"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:gravity="bottom"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvAppVersion_brain_key_activity"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/v_1_0_beta" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvBlockNumberHead_brain_key_activity"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/block_number" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ivSocketConnected_brain_key_activity"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="0.5" />
|
2017-10-01 01:52:34 +00:00
|
|
|
|
2017-10-05 02:46:55 +00:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="0dp"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:layout_weight="0.5"
|
2017-10-01 01:52:34 +00:00
|
|
|
android:src="@drawable/icon_setting"
|
2017-10-05 02:46:55 +00:00
|
|
|
android:visibility="invisible" />
|
2017-10-01 01:52:34 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|