open-keychain/OpenPGP-Keychain/src/main/res/layout/edit_key_activity.xml

46 lines
1.6 KiB
XML
Raw Normal View History

2010-04-06 15:54:51 -04:00
<?xml version="1.0" encoding="utf-8"?>
2012-04-12 13:44:00 -04:00
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
2014-01-09 09:12:41 -05:00
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
2010-04-06 15:54:51 -04:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2012-04-12 13:44:00 -04:00
android:fillViewport="true"
android:orientation="vertical" >
2010-04-06 15:54:51 -04:00
2012-04-12 13:44:00 -04:00
<LinearLayout
2010-05-18 11:23:25 -04:00
android:layout_width="fill_parent"
2012-04-12 13:44:00 -04: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 13:44:00 -04: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 13:44:00 -04:00
2014-01-09 09:12:41 -05:00
<com.beardedhen.androidbootstrap.BootstrapButton
2012-04-12 13:44:00 -04:00
android:id="@+id/edit_key_btn_change_pass_phrase"
android:layout_width="match_parent"
android:layout_height="60dp"
2012-04-12 13:44:00 -04:00
android:padding="4dp"
2014-01-09 09:12:41 -05:00
android:text="@string/btn_set_passphrase"
bootstrapbutton:bb_icon_left="fa-pencil"
bootstrapbutton:bb_type="info" />
2010-04-06 15:54:51 -04:00
2010-05-18 11:23:25 -04:00
<LinearLayout
2012-04-12 13:44:00 -04:00
android:id="@+id/edit_key_container"
2010-05-18 11:23:25 -04:00
android:layout_width="fill_parent"
2012-04-12 13:44:00 -04:00
android:layout_height="wrap_content"
android:orientation="vertical" >
</LinearLayout>
2012-04-12 13:44:00 -04:00
</LinearLayout>
2010-05-18 11:23:25 -04:00
2012-04-12 13:44:00 -04:00
</ScrollView>