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"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:fillViewport="true"
|
|
|
|
android:orientation="vertical" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ScrollView
|
2012-03-12 09:28:35 -04:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_margin="10dip"
|
|
|
|
android:fillViewport="true" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
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"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="fill_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"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
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"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="vertical" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_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"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="vertical" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
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
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
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"
|
2012-03-12 10:10:26 -04:00
|
|
|
android:src="@drawable/ic_menu_filebrowser" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/label_deleteAfterDecryption"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_weight="1"
|
2010-05-11 10:07:15 -04:00
|
|
|
android:paddingRight="10dip"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:text="@string/label_deleteAfterDecryption"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
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"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ViewFlipper>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
<LinearLayout
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/signature"
|
2010-08-18 08:26:13 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<RelativeLayout
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:src="@drawable/signed_large" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:src="@drawable/overlay_error" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="5dip" >
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/mainUserId"
|
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:layout_gravity="left"
|
|
|
|
android:text="Main User Id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-11 10:07:15 -04:00
|
|
|
|
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/mainUserIdRest"
|
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:layout_gravity="left"
|
|
|
|
android:text="Main User Id Rest"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-05-11 10:07:15 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2012-03-12 09:28:35 -04:00
|
|
|
</LinearLayout>
|