mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 02:38:20 +00:00
When tapping the nav handle from running app, OtherActivityInputConsumer will start the recents window through TaskAnimationManager. The recents window would then typically be closed through the StateManager, however since the state isn't changing, then RecentsWindowManger never actually gets any signal to close the recents window. Added a new callback to fix this flow. Flag: com.android.launcher3.enable_launcher_overview_in_window Flag: com.android.launcher3.enable_fallback_overview_in_window Bug: 377678992 Test: pre/post submit tests. tapped nev handle from a runnign app Change-Id: If1fe7de195a9a8a98c72629c7904d469a5768d7f
36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
/*
|
|
* Copyright (C) 2024 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.launcher3.util;
|
|
|
|
/**
|
|
* Proxy class used for StateManager ProtoLog support.
|
|
*/
|
|
public class StateManagerProtoLogProxy {
|
|
|
|
public static void logGoToState(Object fromState, Object toState, String trace) { }
|
|
|
|
public static void logCreateAtomicAnimation(Object fromState, Object toState, String trace) { }
|
|
|
|
public static void logOnStateTransitionStart(Object state) { }
|
|
|
|
public static void logOnStateTransitionEnd(Object state) { }
|
|
|
|
public static void logOnRepeatStateSetAborted(Object state) { }
|
|
|
|
public static void logCancelAnimation(boolean animationOngoing, String trace) { }
|
|
}
|