Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7342783b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add logs when runningTaskView after re-binding tasks is null." into sc-v2-dev am: 264f6a4b

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15463436

Change-Id: I2dbd3b3036ef213bd4e1c1a85147072173dbcb1f
parents 798108f7 264f6a4b
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCH
import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_TASK_DISMISS_SWIPE_UP;
import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_TASK_LAUNCH_SWIPE_DOWN;
import static com.android.launcher3.statehandlers.DepthController.DEPTH;
import static com.android.launcher3.testing.TestProtocol.TASK_VIEW_ID_CRASH;
import static com.android.launcher3.touch.PagedOrientationHandler.CANVAS_TRANSLATE;
import static com.android.launcher3.util.Executors.MAIN_EXECUTOR;
import static com.android.launcher3.util.Executors.UI_HELPER_EXECUTOR;
@@ -82,6 +83,7 @@ import android.text.StaticLayout;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.util.FloatProperty;
import android.util.Log;
import android.util.SparseBooleanArray;
import android.view.HapticFeedbackConstants;
import android.view.KeyEvent;
@@ -1222,6 +1224,9 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
        // TODO set these type to array and check all taskIDs? Maybe we can get away w/ only one
        int runningTaskId = getTaskIdsForTaskViewId(mRunningTaskViewId)[0];
        int focusedTaskId = getTaskIdsForTaskViewId(mFocusedTaskViewId)[0];
        Log.d(TASK_VIEW_ID_CRASH, "runningTaskId beforeBind: " + runningTaskId
                + " runningTaskViewId: " + mRunningTaskViewId
                + " forTaskView: " + getTaskViewFromTaskViewId(mRunningTaskViewId));

        // Rebind and reset all task views
        for (int i = requiredTaskCount - 1; i >= 0; i--) {
@@ -1246,6 +1251,18 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
            // Update mRunningTaskViewId to be the new TaskView that was assigned by binding
            // the full list of tasks to taskViews
            newRunningTaskView = getTaskViewByTaskId(runningTaskId);
            if (newRunningTaskView == null) {
                StringBuilder sb = new StringBuilder();
                for (int i = requiredTaskCount - 1; i >= 0; i--) {
                    final int pageIndex = requiredTaskCount - i - 1 + mTaskViewStartIndex;
                    final TaskView taskView = (TaskView) getChildAt(pageIndex);
                    int taskViewId = taskView.getTaskViewId();
                    sb.append(" taskViewId: " + taskViewId
                            + " taskId: " + getTaskIdsForTaskViewId(taskViewId)[0]
                            + " for taskView: " + taskView + "\n");
                }
                Log.d(TASK_VIEW_ID_CRASH, sb.toString());
            }
            mRunningTaskViewId = newRunningTaskView.getTaskViewId();
        }

+1 −0
Original line number Diff line number Diff line
@@ -119,4 +119,5 @@ public final class TestProtocol {
    public static final String FALLBACK_ACTIVITY_NO_SET = "b/181019015";
    public static final String THIRD_PARTY_LAUNCHER_NOT_SET = "b/187080582";
    public static final String MOTION_PAUSE_TIMEOUT = "b/194114179";
    public static final String TASK_VIEW_ID_CRASH = "b/195430732";
}