Files
open-keychain/OpenKeychain/src/main/res/layout/upload_key_activity.xml

72 lines
2.8 KiB
XML
Raw Normal View History

2015-01-13 23:15:13 +01:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2014-05-08 15:46:57 +02:00
android:layout_height="match_parent">
2015-01-13 23:15:13 +01:00
<include
android:id="@+id/toolbar_include"
layout="@layout/toolbar_standalone" />
2014-07-31 21:29:45 +02:00
2015-01-13 23:15:13 +01:00
<LinearLayout
android:layout_below="@id/toolbar_include"
2015-01-13 23:15:13 +01:00
android:orientation="vertical"
2014-01-18 20:40:41 +01:00
android:layout_width="match_parent"
2014-07-31 21:29:45 +02:00
android:layout_height="match_parent">
2014-05-08 15:46:57 +02:00
2015-01-13 23:15:13 +01:00
<include layout="@layout/notify_area" />
<ScrollView
2014-01-18 20:40:41 +01:00
android:layout_width="match_parent"
2015-01-13 23:15:13 +01:00
android:layout_height="match_parent">
2014-07-31 21:29:45 +02:00
2015-01-13 23:15:13 +01:00
<LinearLayout
2014-07-31 21:29:45 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-01-13 23:15:13 +01:00
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="vertical">
<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" />
<Spinner
android:id="@+id/upload_key_keyserver"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginTop="4dp" />
<TextView
style="@style/SectionHeader"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_marginTop="14dp"
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"
android:text="@string/btn_export_to_server"
android:minHeight="?android:attr/listPreferredItemHeight"
2015-03-03 11:26:59 -08:00
android:drawableRight="@drawable/ic_file_upload_grey_24dp"
2015-01-13 23:15:13 +01:00
android:drawablePadding="8dp"
android:gravity="center_vertical"
android:clickable="true"
2015-03-10 02:13:36 +01:00
android:background="?android:selectableItemBackground" />
2015-01-13 23:15:13 +01:00
</LinearLayout>
</ScrollView>
</LinearLayout>
</RelativeLayout>