2010-05-18 15:23:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-09 22:58:52 +01:00
|
|
|
<android.support.v4.widget.DrawerLayout 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"
|
2014-03-08 12:28:28 +01:00
|
|
|
xmlns:fontawesometext="http://schemas.android.com/apk/res-auto"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/drawer_layout"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:layout_height="match_parent">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<ScrollView
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="match_parent"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:fillViewport="true">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2012-03-12 01:58:24 +01:00
|
|
|
<LinearLayout
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-03-12 01:58:24 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="10dp"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:paddingRight="10dp">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2012-03-12 01:58:24 +01:00
|
|
|
<LinearLayout
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-03-12 01:58:24 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:orientation="horizontal"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:padding="4dp">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/modePrevious"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_previous" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/modeLabel"
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal|center_vertical"
|
|
|
|
android:text="@string/label_asymmetric" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/modeNext"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_next" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/mode"
|
|
|
|
android:layout_width="match_parent"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:layout_height="wrap_content">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2010-05-18 15:23:25 +00:00
|
|
|
<LinearLayout
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/modeAsymmetric"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:orientation="vertical"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:padding="4dp">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:orientation="horizontal">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/sign"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_sign" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:paddingLeft="16dp">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2014-03-07 22:12:58 +02:00
|
|
|
android:text="@string/label_sign_user_id"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2014-03-07 22:12:58 +02:00
|
|
|
android:text="@string/label_sign_email"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2010-05-18 15:23:25 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:orientation="horizontal"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:paddingBottom="3dip">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/label_selectPublicKeys"
|
|
|
|
android:layout_width="0dip"
|
2012-03-12 00:12:19 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/label_select_public_keys"
|
2012-03-12 00:12:19 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/btn_selectEncryptKeys"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:text="@string/btn_select_encrypt_keys"
|
2014-01-09 23:51:23 +01:00
|
|
|
bootstrapbutton:bb_icon_left="fa-user"
|
2014-01-09 22:58:52 +01:00
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
2010-05-18 15:23:25 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<TableLayout
|
|
|
|
android:id="@+id/modeSymmetric"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-03-12 00:12:19 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:padding="4dp"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:stretchColumns="1">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<TableRow>
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<TextView
|
2014-03-06 10:05:43 +05:30
|
|
|
android:id="@+id/label_passphrase"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:text="@string/label_passphrase"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<EditText
|
2014-03-06 10:05:43 +05:30
|
|
|
android:id="@+id/passphrase"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<TableRow>
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<TextView
|
2014-03-06 10:05:43 +05:30
|
|
|
android:id="@+id/label_passphraseAgain"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:text="@string/label_passphrase_again"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<EditText
|
2014-03-06 10:05:43 +05:30
|
|
|
android:id="@+id/passphraseAgain"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</ViewFlipper>
|
2012-11-22 12:12:06 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:padding="4dp">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sourcePrevious"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_previous" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/sourceLabel"
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="0dip"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_height="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal|center_vertical"
|
|
|
|
android:text="@string/label_message"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sourceNext"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_next" />
|
2012-11-22 12:12:06 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/source"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="0dip"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:layout_weight="1">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/sourceMessage"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:padding="4dp">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
|
|
|
<EditText
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="text|textCapSentences|textMultiLine|textLongMessage" />
|
2012-11-22 12:12:06 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 22:58:52 +01:00
|
|
|
android:id="@+id/sourceFile"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:padding="4dp">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-11-22 12:12:06 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 17:34:43 +01:00
|
|
|
android:orientation="horizontal">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/filename"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2014-03-13 18:53:21 +01:00
|
|
|
android:gravity="top|left"
|
|
|
|
android:inputType="textMultiLine|textUri"
|
|
|
|
android:lines="4"
|
|
|
|
android:maxLines="10"
|
|
|
|
android:minLines="2"
|
|
|
|
android:scrollbars="vertical" />
|
2014-01-09 22:58:52 +01:00
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/btn_browse"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-folder-open"
|
|
|
|
bootstrapbutton:bb_roundedCorners="true"
|
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-03-08 12:28:28 +01:00
|
|
|
android:id="@+id/advancedSettingsControl"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-11-22 12:12:06 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:clickable="true">
|
2014-03-13 18:53:21 +01:00
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<com.beardedhen.androidbootstrap.FontAwesomeText
|
|
|
|
android:id="@+id/advancedSettingsIcon"
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:paddingTop="@dimen/padding_medium"
|
|
|
|
android:paddingBottom="@dimen/padding_medium"
|
2014-03-13 18:53:21 +01:00
|
|
|
fontawesometext:fa_icon="fa-chevron-right" />
|
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/advancedSettings"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:text="@string/btn_encryption_advanced_settings_show"
|
|
|
|
android:paddingTop="@dimen/padding_medium"
|
|
|
|
android:paddingBottom="@dimen/padding_medium"
|
2014-03-13 18:53:21 +01:00
|
|
|
android:textColor="@color/emphasis" />
|
2014-01-09 22:58:52 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-03-08 12:28:28 +01:00
|
|
|
android:id="@+id/fileAdvancedSettingsContainer"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-11-22 12:12:06 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:orientation="horizontal">
|
2012-11-22 12:12:06 +01:00
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_fileCompression"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:text="@string/label_file_compression"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2014-03-07 21:16:58 +05:30
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/fileCompression"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-03-07 21:16:58 +05:30
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:orientation="horizontal">
|
2014-03-07 21:16:58 +05:30
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/deleteAfterEncryption"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_delete_after_encryption" />
|
|
|
|
</LinearLayout>
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2014-03-08 12:28:28 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-08 12:28:28 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/shareAfterEncryption"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_share_after_encryption" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/asciiArmour"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_ascii_armor" />
|
|
|
|
</LinearLayout>
|
2014-01-09 22:58:52 +01:00
|
|
|
</LinearLayout>
|
2012-11-22 12:12:06 +01:00
|
|
|
</LinearLayout>
|
2014-01-09 22:58:52 +01:00
|
|
|
</ViewFlipper>
|
2014-02-02 17:34:43 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:text="@string/section_encrypt_and_or_sign" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp">
|
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/action_encrypt_share"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/btn_share"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-lock"
|
|
|
|
bootstrapbutton:bb_type="info" />
|
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/action_encrypt_clipboard"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/btn_clipboard"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-lock"
|
|
|
|
bootstrapbutton:bb_type="info" />
|
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/action_encrypt_file"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:text="@string/btn_encrypt_file"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-lock"
|
|
|
|
bootstrapbutton:bb_type="info" />
|
|
|
|
</LinearLayout>
|
2014-01-09 22:58:52 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
<include layout="@layout/drawer_list" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2014-01-09 22:58:52 +01:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|