2010-04-06 15:54:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-04-12 13:44:00 -04:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TableLayout
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:stretchColumns="1" >
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:padding="4dp"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:text="@string/key_creation_el_gamal_info" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/label_algorithm" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/create_key_algorithm"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp" />
|
|
|
|
</TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TableRow>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:padding="4dp"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:text="@string/label_key_size" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2013-07-22 12:11:41 -04:00
|
|
|
<Spinner
|
2012-04-12 13:44:00 -04:00
|
|
|
android:id="@+id/create_key_size"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-04-12 13:44:00 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
2013-07-22 12:11:41 -04:00
|
|
|
android:padding="4dp" />
|
2012-04-12 13:44:00 -04:00
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-04-12 13:44:00 -04:00
|
|
|
</ScrollView>
|