2010-05-18 11:23:25 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-12 10:10:26 -04:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:fillViewport="true" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_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"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04: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"
|
2012-04-12 21:33:00 -04:00
|
|
|
style="@style/SectionHeader"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="fill_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"
|
|
|
|
android:layout_width="wrap_content"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:src="@drawable/ic_next" />
|
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/source"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/sourceMessage"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="4dp" >
|
2012-03-11 20:58:24 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="fill_parent"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="text|textCapSentences|textMultiLine|textLongMessage" />
|
2010-05-18 11:23:25 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/sourceFile"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="4dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<EditText
|
2012-03-11 20:58:24 -04:00
|
|
|
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" />
|
2012-03-11 20:58:24 -04:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/btn_browse"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:src="@drawable/ic_menu_filebrowser" />
|
2010-05-18 11:23:25 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_fileCompression"
|
|
|
|
android:layout_width="0dip"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:text="@string/label_fileCompression"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2012-03-11 20:58:24 -04:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/fileCompression"
|
|
|
|
android:layout_width="wrap_content"
|
2012-03-11 19:12:19 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/deleteAfterEncryption"
|
|
|
|
android:layout_width="wrap_content"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_deleteAfterEncryption" />
|
2012-03-11 20:58:24 -04:00
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/asciiArmour"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_asciiArmour" />
|
2010-05-18 11:23:25 -04:00
|
|
|
</LinearLayout>
|
2012-03-11 20:58:24 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</ViewFlipper>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04: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"
|
2012-04-12 21:33:00 -04:00
|
|
|
style="@style/SectionHeader"
|
2012-03-11 20:58:24 -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-11 20:58:24 -04:00
|
|
|
android:gravity="center_horizontal|center_vertical"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:text="@string/label_asymmetric" />
|
2012-03-11 20:58:24 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/modeNext"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_next" />
|
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<ViewFlipper
|
|
|
|
android:id="@+id/mode"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/modeAsymmetric"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="4dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 21:33:00 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/sign"
|
|
|
|
android:layout_width="wrap_content"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:text="@string/label_sign" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2012-06-09 11:04:18 -04:00
|
|
|
android:layout_width="fill_parent"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:orientation="vertical"
|
2012-06-09 11:04:18 -04:00
|
|
|
android:paddingLeft="16dp" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<TextView
|
2012-03-11 20:58:24 -04:00
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
2012-03-11 19:12:19 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_gravity="right"
|
2012-06-09 11:04:18 -04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="Sign User Id"
|
2012-03-11 19:12:19 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_gravity="right"
|
2012-06-09 11:04:18 -04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="Sign email"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-05-18 11:23:25 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-11 19:12:19 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="3dip" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_selectPublicKeys"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/label_selectPublicKeys"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_selectEncryptKeys"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/btn_selectEncryptKeys" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TableLayout
|
|
|
|
android:id="@+id/modeSymmetric"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 21:33:00 -04:00
|
|
|
android:padding="4dp"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:stretchColumns="1" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_passPhrase"
|
|
|
|
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 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/passPhrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_passPhraseAgain"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:text="@string/label_passPhraseAgain"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/passPhraseAgain"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</ViewFlipper>
|
2010-05-18 11:23:25 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2012-03-12 09:28:35 -04:00
|
|
|
</ScrollView>
|