From d205de25a43094e133c73ede27364eacbe92c183 Mon Sep 17 00:00:00 2001 From: Adrian DC Date: Tue, 24 Oct 2017 21:17:03 +0200 Subject: [PATCH] Quick Settings: Avoid expand indicators shortly showing on edit * Upon entering of the Quick Settings edit view, during the animation, all the expand indicators are rarely visible for a short period of time until hidden * To avoid this visual glitch, hide the expand_indicator by default and let the code show it when necessary instead of hiding it for most cases Change-Id: Ia14d9a8d63178ccb54fbcb969ddf51f06c88f35c Signed-off-by: Adrian DC --- packages/SystemUI/res/layout/qs_tile_label.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/res/layout/qs_tile_label.xml b/packages/SystemUI/res/layout/qs_tile_label.xml index 35a947777dd1b..b138df0862530 100644 --- a/packages/SystemUI/res/layout/qs_tile_label.xml +++ b/packages/SystemUI/res/layout/qs_tile_label.xml @@ -63,7 +63,8 @@ android:layout_width="18dp" android:layout_height="match_parent" android:src="@drawable/qs_dual_tile_caret" - android:tint="?android:attr/textColorPrimary" /> + android:tint="?android:attr/textColorPrimary" + android:visibility="gone" />