summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2017-10-16 00:06:17 +0200
committerByteHamster <info@bytehamster.com>2017-12-24 13:11:57 +0100
commit4cb4a0a0cbb65bc0db58ce24cc665f38a06ee208 (patch)
treed2cac06794778df8794a7c0c70878980d475f8ca /app/src/main/res
parentaf33e4c37bdad3151013553dbeafc3bc1e8043b0 (diff)
downloadAntennaPod-4cb4a0a0cbb65bc0db58ce24cc665f38a06ee208.zip
Supporting export using documents store API
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/import_export_activity.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/app/src/main/res/layout/import_export_activity.xml b/app/src/main/res/layout/import_export_activity.xml
index 91e798ead..6614a8710 100644
--- a/app/src/main/res/layout/import_export_activity.xml
+++ b/app/src/main/res/layout/import_export_activity.xml
@@ -3,8 +3,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:paddingTop="8dp"
- android:paddingBottom="8dp">
+ android:id="@+id/import_export_layout"
+ android:padding="8dp">
<TextView
android:layout_width="match_parent"
@@ -13,15 +13,16 @@
android:gravity="center_horizontal"/>
<Button
- android:text="@string/label_export"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/button_export"/>
+ android:text="@string/label_export"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/button_export"
+ android:layout_marginTop="24dp"/>
<Button
- android:text="@string/label_import"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/button_import"/>
+ android:text="@string/label_import"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/button_import"/>
</LinearLayout>