diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2019-08-23 17:39:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-23 17:39:06 +0200 |
commit | 9a1d5fd855b848a4054901c42b4f69365621a64d (patch) | |
tree | 77028d7ad5b35c8f2c8ebba0e4bdc12974996fd0 /app | |
parent | be957e53b3a6ad112ba66d8b4e32c972486aa09a (diff) | |
parent | 79465983d32345905ff7ad31f0c6d9babc7ea03a (diff) | |
download | AntennaPod-9a1d5fd855b848a4054901c42b4f69365621a64d.zip |
Merge pull request #3331 from ByteHamster/add-feed-page-spacing
Updated spacing of add feed page
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/addfeed.xml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app/src/main/res/layout/addfeed.xml b/app/src/main/res/layout/addfeed.xml index 011aa4c8b..a9cf31cf2 100644 --- a/app/src/main/res/layout/addfeed.xml +++ b/app/src/main/res/layout/addfeed.xml @@ -27,6 +27,8 @@ <ImageView android:layout_width="40dp" android:layout_height="match_parent" + android:layout_marginLeft="8dp" + android:layout_marginRight="8dp" android:contentDescription="@string/search_podcast_hint" app:srcCompat="?attr/action_search" android:scaleType="center"/> @@ -39,8 +41,10 @@ android:inputType="text" android:imeOptions="actionSearch" android:importantForAutofill="no" - android:layout_marginLeft="8dp" + android:layout_marginStart="0dp" + android:layout_marginLeft="0dp" android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" android:paddingTop="16dp" android:paddingBottom="16dp" android:hint="@string/search_podcast_hint" @@ -109,16 +113,17 @@ <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" + android:padding="8dp" android:layout_gravity="center_horizontal" android:orientation="horizontal"> <LinearLayout android:id="@+id/advanced_search" - android:layout_width="96dp" + android:layout_width="120dp" android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center_horizontal" - android:padding="16dp" + android:padding="8dp" android:background="?android:attr/selectableItemBackground"> <ImageView @@ -140,11 +145,11 @@ <LinearLayout android:id="@+id/btn_opml_import" - android:layout_width="96dp" + android:layout_width="120dp" android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center_horizontal" - android:padding="16dp" + android:padding="8dp" android:background="?android:attr/selectableItemBackground"> <ImageView |