0c6ccca22d
Since mTaskbarInAppDisplayProgressMultiProp is set by various states that are hard to query in init() (e.g. state of all apps, -1, widgets, etc.), we store the last mTaskbarInAppDisplayProgressMultiProp in the TaskbarSharedState and restore those values in init(). Also updated some debug logs in the dump. Test: manual: from home screen, swipe down to quick settings and toggle Dark theme, ensure nav buttons don't translate; do the same but over launcher all apps Flag: none Fixes: 267325761 Change-Id: Ib8e6778582ed39c674cd3c1e95312e673659f6a7
47 lines
1.5 KiB
Java
47 lines
1.5 KiB
Java
/*
|
|
* Copyright (C) 2021 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.taskbar;
|
|
|
|
import static com.android.launcher3.taskbar.LauncherTaskbarUIController.DISPLAY_PROGRESS_COUNT;
|
|
|
|
/**
|
|
* State shared across different taskbar instance
|
|
*/
|
|
public class TaskbarSharedState {
|
|
|
|
// TaskbarManager#onSystemUiFlagsChanged
|
|
public int sysuiStateFlags;
|
|
|
|
// TaskbarManager#disableNavBarElements()
|
|
public int disableNavBarDisplayId;
|
|
public int disableNavBarState1;
|
|
public int disableNavBarState2;
|
|
|
|
// TaskbarManager#onSystemBarAttributesChanged()
|
|
public int systemBarAttrsDisplayId;
|
|
public int systemBarAttrsBehavior;
|
|
|
|
// TaskbarManager#onNavButtonsDarkIntensityChanged()
|
|
public float navButtonsDarkIntensity;
|
|
|
|
public boolean setupUIVisible = false;
|
|
|
|
public boolean allAppsVisible = false;
|
|
|
|
// LauncherTaskbarUIController#mTaskbarInAppDisplayProgressMultiProp
|
|
public float[] inAppDisplayProgressMultiPropValues = new float[DISPLAY_PROGRESS_COUNT];
|
|
}
|