open-keychain/OpenKeychain/src/main/res/layout/edit_key_activity.xml

46 lines
1.6 KiB
XML
Raw Normal View History

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"
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"
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
android:id="@+id/edit_key_btn_change_passphrase"
2012-04-12 19:44:00 +02:00
android:layout_width="match_parent"
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" >
</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>