From 5a3f7ae764b196a6df370cc4250457584731da05 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 28 Feb 2019 12:15:54 -0800 Subject: Load app content descriptions for Go recents. Recents Go with icons will use the app's title description as the app label, so we need this to actually load when we load the task's content even if accessibility is disabled. This CL puts this behind a static flag only set to true in recents Go code. Bug: 114136250 Test: Log that titles/labels are appropriately fetched Change-Id: I4fe7d8758b3141695a82c0677cec97686c977934 --- .../src/com/android/launcher3/uioverrides/RecentsUiFactory.java | 1 + 1 file changed, 1 insertion(+) (limited to 'quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java') diff --git a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java index 027fd910c..50cc4daed 100644 --- a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java +++ b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java @@ -44,6 +44,7 @@ import java.util.ArrayList; */ public abstract class RecentsUiFactory { + public static final boolean GO_LOW_RAM_RECENTS_ENABLED = false; private static final AsyncCommand SET_SHELF_HEIGHT_CMD = (visible, height) -> WindowManagerWrapper.getInstance().setShelfHeight(visible != 0, height); -- cgit v1.2.3