2010-05-11 10:07:15 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-12 09:28:35 -04:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2012-03-12 09:28:35 -04:00
|
|
|
<LinearLayout 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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:fillViewport="true"
|
|
|
|
android:orientation="vertical" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ScrollView
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-04-13 10:54:50 -04:00
|
|
|
android:fillViewport="true" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
2012-04-13 10:54:50 -04:00
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2012-11-22 06:12:06 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/signature"
|
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"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp" >
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="5dip" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="Main User Id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2010-05-11 10:07:15 -04:00
|
|
|
<LinearLayout
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ImageView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/sourcePrevious"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:src="@drawable/ic_previous" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/sourceLabel"
|
2012-04-12 21:33:00 -04:00
|
|
|
style="@style/SectionHeader"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="0dip"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_height="match_parent"
|
2012-03-12 10:10:26 -04:00
|
|
|
android:layout_weight="1"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:gravity="center_horizontal|center_vertical"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:text="@string/label_message"
|
2012-03-12 10:10:26 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ImageView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/sourceNext"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:src="@drawable/ic_next" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/source"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_height="0dip"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_weight="1" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/sourceMessage"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="4dp" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/message"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="text|textCapSentences|textMultiLine|textLongMessage"
|
|
|
|
android:scrollHorizontally="true" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/sourceFile"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="4dp" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/filename"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:inputType="textNoSuggestions" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2014-01-09 09:12:41 -05:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
2010-05-11 10:07:15 -04:00
|
|
|
android:id="@+id/btn_browse"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_width="wrap_content"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_margin="4dp"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-folder-open"
|
|
|
|
bootstrapbutton:bb_roundedCorners="true"
|
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<CheckBox
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/deleteAfterDecryption"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:text="@string/label_delete_after_decryption" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ViewFlipper>
|
|
|
|
</LinearLayout>
|
2012-09-08 13:55:17 -04:00
|
|
|
</ScrollView>
|
2010-05-11 10:07:15 -04:00
|
|
|
|
2012-03-12 09:28:35 -04:00
|
|
|
</LinearLayout>
|