diff options
author | ByteHamster <info@bytehamster.com> | 2017-10-16 00:06:17 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2017-12-24 13:11:57 +0100 |
commit | 4cb4a0a0cbb65bc0db58ce24cc665f38a06ee208 (patch) | |
tree | d2cac06794778df8794a7c0c70878980d475f8ca /app/src/main/res | |
parent | af33e4c37bdad3151013553dbeafc3bc1e8043b0 (diff) | |
download | AntennaPod-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.xml | 21 |
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> |