From 63f0318c7b315132c79bab4bebb76e489207ae0f Mon Sep 17 00:00:00 2001 From: Janne Koschinski <janne@kuschku.de> Date: Thu, 8 Mar 2018 18:52:36 +0100 Subject: [PATCH] Made autocomplete stand out more --- app/src/main/res/layout-land/layout_main.xml | 3 ++- app/src/main/res/layout-sw600dp-land/layout_main.xml | 3 ++- app/src/main/res/layout/layout_main.xml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/src/main/res/layout-land/layout_main.xml b/app/src/main/res/layout-land/layout_main.xml index 63319cf23..0f2a4dfae 100644 --- a/app/src/main/res/layout-land/layout_main.xml +++ b/app/src/main/res/layout-land/layout_main.xml @@ -30,7 +30,8 @@ <de.kuschku.quasseldroid_ng.util.ui.AutoCompleteRecyclerView android:id="@+id/autocomplete_list" android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + android:background="?colorBackgroundCard" /> </LinearLayout> <include layout="@layout/layout_slider" /> diff --git a/app/src/main/res/layout-sw600dp-land/layout_main.xml b/app/src/main/res/layout-sw600dp-land/layout_main.xml index 11679ffe1..8f62bb12f 100644 --- a/app/src/main/res/layout-sw600dp-land/layout_main.xml +++ b/app/src/main/res/layout-sw600dp-land/layout_main.xml @@ -35,7 +35,8 @@ <de.kuschku.quasseldroid_ng.util.ui.AutoCompleteRecyclerView android:id="@+id/autocomplete_list" android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + android:background="?colorBackgroundCard" /> </LinearLayout> diff --git a/app/src/main/res/layout/layout_main.xml b/app/src/main/res/layout/layout_main.xml index be36a2487..50001794e 100644 --- a/app/src/main/res/layout/layout_main.xml +++ b/app/src/main/res/layout/layout_main.xml @@ -35,7 +35,8 @@ <de.kuschku.quasseldroid_ng.util.ui.AutoCompleteRecyclerView android:id="@+id/autocomplete_list" android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + android:background="?colorBackgroundCard" /> </LinearLayout> <include layout="@layout/layout_slider" /> -- GitLab