2014-01-12 21:33:37 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-01-18 20:40:41 +01:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-05-08 15:46:57 +02:00
|
|
|
android:layout_height="match_parent">
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-01-18 20:40:41 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-01 16:17:33 +01:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
2014-05-08 15:46:57 +02:00
|
|
|
android:orientation="vertical">
|
2014-01-18 20:40:41 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginTop="14dp"
|
|
|
|
android:text="@string/section_key_server" />
|
2014-05-08 15:46:57 +02:00
|
|
|
|
2014-01-18 20:40:41 +01:00
|
|
|
<Spinner
|
2014-05-08 15:46:57 +02:00
|
|
|
android:id="@+id/upload_key_keyserver"
|
2014-01-18 20:40:41 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginTop="4dp" />
|
|
|
|
|
2014-05-08 15:46:57 +02:00
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
2014-01-18 20:40:41 +01:00
|
|
|
android:layout_marginTop="14dp"
|
2014-05-08 15:46:57 +02:00
|
|
|
android:text="@string/section_actions"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/upload_key_action_upload"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-01-18 20:40:41 +01:00
|
|
|
android:text="@string/btn_export_to_server"
|
2014-05-08 15:46:57 +02:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
android:drawableRight="@drawable/ic_action_upload"
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:clickable="true"
|
|
|
|
style="@style/SelectableItem" />
|
|
|
|
|
2014-01-18 20:40:41 +01:00
|
|
|
</LinearLayout>
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-01-18 20:40:41 +01:00
|
|
|
</ScrollView>
|