From 79b176e42c107b34a649866de2bcfca439181cf0 Mon Sep 17 00:00:00 2001 From: Tony Wickham Date: Mon, 5 Jun 2017 17:54:45 -0700 Subject: Fix visibility of notification footer divider Now it is only visible when the notification footer is present, instead of always being visible. Change-Id: Ie85ff31918901115cdfe55b36e75aa80b43e7b13 --- res/layout/notification.xml | 3 ++- src/com/android/launcher3/notification/NotificationFooterLayout.java | 1 + src/com/android/launcher3/popup/PopupContainerWithArrow.java | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/res/layout/notification.xml b/res/layout/notification.xml index a03dd0833..a183c92f7 100644 --- a/res/layout/notification.xml +++ b/res/layout/notification.xml @@ -66,7 +66,8 @@ android:layout_width="match_parent" android:layout_height="@dimen/popup_item_divider_height" android:background="?android:attr/listDivider" - android:layout_below="@id/main_view"/> + android:layout_below="@id/main_view" + android:visibility="gone" />