Do not show window decor for PIP

DesktopModeWindowDecorViewModel#shouldShowWindowDecor should show false
when windowing mode equals WINDOWING_MODE_PINNED

Test: swipe up from fullscreen youtube video to enter PIP. There should
not be black borders
Bug: 287350098

Change-Id: Id1c75e8a60c2e2923d5d5132c9ed263635a3a84d
This commit is contained in:
Maryam Dehaini
2023-06-14 17:07:22 -07:00
parent 53a00167ec
commit 8d20824ddf

View File

@@ -20,6 +20,7 @@ import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
import static android.app.WindowConfiguration.WINDOWING_MODE_MULTI_WINDOW;
import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
import static com.android.wm.shell.common.split.SplitScreenConstants.SPLIT_POSITION_BOTTOM_OR_RIGHT;
import static com.android.wm.shell.common.split.SplitScreenConstants.SPLIT_POSITION_TOP_OR_LEFT;
@@ -787,6 +788,7 @@ public class DesktopModeWindowDecorViewModel implements WindowDecorViewModel {
return false;
}
return DesktopModeStatus.isProto2Enabled()
&& taskInfo.getWindowingMode() != WINDOWING_MODE_PINNED
&& taskInfo.getActivityType() == ACTIVITY_TYPE_STANDARD
&& mDisplayController.getDisplayContext(taskInfo.displayId)
.getResources().getConfiguration().smallestScreenWidthDp >= 600;