2010-04-06 19:54:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-04-12 19:44:00 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-09 15:12:41 +01:00
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
2010-04-06 19:54:51 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-04-12 19:44:00 +02:00
|
|
|
android:fillViewport="true"
|
|
|
|
android:orientation="vertical" >
|
2010-04-06 19:54:51 +00:00
|
|
|
|
2012-04-12 19:44:00 +02:00
|
|
|
<LinearLayout
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-04-12 19:44:00 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:text="@string/label_passphrase" />
|
2012-04-12 19:44:00 +02:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/edit_key_no_passphrase"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:text="@string/label_no_passphrase" />
|
2012-04-12 19:44:00 +02:00
|
|
|
|
2014-01-09 15:12:41 +01:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
2014-03-06 10:05:43 +05:30
|
|
|
android:id="@+id/edit_key_btn_change_passphrase"
|
2012-04-12 19:44:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-01-14 21:19:43 +01:00
|
|
|
android:layout_height="60dp"
|
2012-04-12 19:44:00 +02:00
|
|
|
android:padding="4dp"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:text="@string/btn_set_passphrase"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-pencil"
|
2014-05-08 15:46:57 +02:00
|
|
|
bootstrapbutton:bb_type="default" />
|
2010-04-06 19:54:51 +00:00
|
|
|
|
2010-05-18 15:23:25 +00:00
|
|
|
<LinearLayout
|
2012-04-12 19:44:00 +02:00
|
|
|
android:id="@+id/edit_key_container"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-04-12 19:44:00 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2010-07-23 12:57:02 +00:00
|
|
|
</LinearLayout>
|
2012-04-12 19:44:00 +02:00
|
|
|
</LinearLayout>
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2012-04-12 19:44:00 +02:00
|
|
|
</ScrollView>
|