2010-05-11 10:07:15 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-09 16:58:52 -05:00
|
|
|
<android.support.v4.widget.DrawerLayout 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"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/drawer_layout"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:layout_height="match_parent">
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2014-03-10 13:23:47 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fillViewport="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ScrollView
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:layout_height="match_parent"
|
2014-03-10 13:23:47 -04:00
|
|
|
android:fillViewport="true">
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2012-11-22 06:12:06 -05:00
|
|
|
<LinearLayout
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:orientation="vertical"
|
2014-02-04 13:53:50 -05:00
|
|
|
android:paddingTop="4dp"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:paddingLeft="10dp"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:paddingRight="10dp">
|
2012-11-22 06:12:06 -05:00
|
|
|
|
2014-02-04 13:53:50 -05:00
|
|
|
<RelativeLayout
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/signature"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:paddingLeft="10dp"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:paddingRight="10dp">
|
2012-11-22 06:12:06 -05:00
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
<RelativeLayout
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_width="wrap_content"
|
2014-02-04 13:53:50 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/relativeLayout">
|
2012-11-22 06:12:06 -05:00
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/signed_large" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/overlay_error" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2014-02-04 13:53:50 -05:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/lookup_key"
|
|
|
|
android:visibility="gone"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_width="wrap_content"
|
2014-02-04 13:53:50 -05:00
|
|
|
android:layout_height="50dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/btn_lookup_key"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-download"
|
|
|
|
bootstrapbutton:bb_type="info"
|
|
|
|
bootstrapbutton:bb_size="small"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true" />
|
2014-01-09 16:58:52 -05:00
|
|
|
|
2014-02-04 13:53:50 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
2014-03-07 15:12:58 -05:00
|
|
|
android:text="@string/label_main_user_id"
|
2014-02-04 13:53:50 -05:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2014-03-10 13:23:47 -04:00
|
|
|
android:layout_alignTop="@+id/linearLayout"
|
2014-02-04 13:53:50 -05:00
|
|
|
android:layout_toRightOf="@+id/relativeLayout" />
|
2014-01-09 16:58:52 -05:00
|
|
|
|
2014-02-04 13:53:50 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="Main User Id Rest"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2014-02-04 16:53:53 -05:00
|
|
|
android:layout_below="@+id/mainUserId"
|
|
|
|
android:layout_toRightOf="@+id/relativeLayout" />
|
2014-02-04 13:53:50 -05:00
|
|
|
</RelativeLayout>
|
2012-11-22 06:12:06 -05:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 16:58:52 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:orientation="horizontal">
|
2012-11-22 06:12:06 -05:00
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sourcePrevious"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:src="@drawable/ic_previous" />
|
2012-11-22 06:12:06 -05:00
|
|
|
|
|
|
|
<TextView
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/sourceLabel"
|
|
|
|
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_message"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sourceNext"
|
2012-11-22 06:12:06 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:src="@drawable/ic_next" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/source"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:layout_height="0dip"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:layout_weight="1">
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/sourceMessage"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:padding="4dp">
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<EditText
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="text|textCapSentences|textMultiLine|textLongMessage"
|
|
|
|
android:scrollHorizontally="true" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 16:58:52 -05:00
|
|
|
android:id="@+id/sourceFile"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-01-09 16:58:52 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:padding="4dp">
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:orientation="horizontal">
|
2014-01-09 16:58:52 -05:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/filename"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:inputType="textNoSuggestions" />
|
|
|
|
|
|
|
|
<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
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 11:34:43 -05:00
|
|
|
android:orientation="horizontal">
|
2014-01-09 16:58:52 -05:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/deleteAfterDecryption"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_delete_after_decryption" />
|
|
|
|
</LinearLayout>
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
2014-01-09 16:58:52 -05:00
|
|
|
</ViewFlipper>
|
2014-02-02 11:34:43 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:text="@string/section_decrypt_verify" />
|
|
|
|
|
|
|
|
<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_decrypt"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/btn_decrypt_verify"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-unlock"
|
|
|
|
bootstrapbutton:bb_type="info" />
|
|
|
|
</LinearLayout>
|
2014-01-09 16:58:52 -05:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2014-03-10 13:23:47 -04:00
|
|
|
</LinearLayout>
|
2014-01-09 16:58:52 -05:00
|
|
|
|
|
|
|
<include layout="@layout/drawer_list" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2014-01-09 16:58:52 -05:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|