70 lines
2.5 KiB
XML
70 lines
2.5 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"
|
|
style="@style/DialogContainer">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/list_entry_padding_vertical"
|
|
android:divider="@drawable/divider_field"
|
|
android:orientation="horizontal"
|
|
android:showDividers="middle">
|
|
|
|
<TextView
|
|
android:id="@+id/new_key_chain_dialog_message_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/list_entry_padding_vertical"
|
|
android:layout_marginTop="@dimen/list_entry_padding_vertical"
|
|
android:layout_weight="2"
|
|
android:text="@string/encrypt_new_key_chain_dialog_message" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/list_entry_padding_vertical"
|
|
android:divider="@drawable/divider_field"
|
|
android:orientation="horizontal"
|
|
android:showDividers="middle">
|
|
|
|
<EditText
|
|
android:id="@+id/pin"
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="@string/private_key_password"
|
|
android:imeOptions="flagNoExtractUi"
|
|
android:inputType="numberPassword"
|
|
android:singleLine="true" />
|
|
|
|
<Button
|
|
android:id="@+id/unlock"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/encrypt_new_key_chain_upgrade_button"
|
|
style="@style/Button.Primary.Blue"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/bad_pin"
|
|
style="@style/Subtitle2.Red"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/private_key_bad_password"
|
|
android:visibility="invisible"
|
|
tools:visibility="visible" />
|
|
|
|
<de.schildbach.wallet.ui.widget.FingerprintView
|
|
android:id="@+id/fingerprint_view"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout> |