Home
last modified time | relevance | path

Searched refs:NON_RESIZEABLE_ACTIVITY (Results 1 – 5 of 5) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/
DMultiWindowTests.java27 import static android.server.wm.app.Components.NON_RESIZEABLE_ACTIVITY;
116 assertActivityNotSupportedInSplitScreen(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivity()
119 assertActivitySupportedInSplitScreen(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivity()
135 assertActivitySupportedInSplitScreen(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivity()
137 assertActivityNotSupportedInSplitScreen(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivity()
154 assertActivitySupportedInSplitScreen(NON_RESIZEABLE_ACTIVITY); in testDevEnableNonResizeableMultiWindow_splitScreenPrimary()
168 getLaunchActivityBuilder().setTargetActivity(NON_RESIZEABLE_ACTIVITY)); in testDevEnableNonResizeableMultiWindow_splitScreenSecondary()
170 mWmState.waitForActivityState(NON_RESIZEABLE_ACTIVITY, STATE_RESUMED); in testDevEnableNonResizeableMultiWindow_splitScreenSecondary()
171 mWmState.assertVisibility(NON_RESIZEABLE_ACTIVITY, true); in testDevEnableNonResizeableMultiWindow_splitScreenSecondary()
173 NON_RESIZEABLE_ACTIVITY, WINDOWING_MODE_MULTI_WINDOW)); in testDevEnableNonResizeableMultiWindow_splitScreenSecondary()
DFreeformWindowingModeTests.java23 import static android.server.wm.app.Components.NON_RESIZEABLE_ACTIVITY;
99 launchActivity(NON_RESIZEABLE_ACTIVITY, WINDOWING_MODE_FREEFORM); in testNonResizeableActivityHasFullDisplayBounds()
101 mWmState.computeState(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivityHasFullDisplayBounds()
104 mWmState.getTaskByActivity(NON_RESIZEABLE_ACTIVITY); in testNonResizeableActivityHasFullDisplayBounds()
DMultiDisplayActivityLaunchTests.java43 import static android.server.wm.app.Components.NON_RESIZEABLE_ACTIVITY;
253 launchActivityOnDisplay(NON_RESIZEABLE_ACTIVITY, newDisplay.mId); in testLaunchNonResizeableActivityOnSecondaryDisplay()
255 waitAndAssertTopResumedActivity(NON_RESIZEABLE_ACTIVITY, newDisplay.mId, in testLaunchNonResizeableActivityOnSecondaryDisplay()
259 .getTaskByActivity(NON_RESIZEABLE_ACTIVITY).mFullConfiguration; in testLaunchNonResizeableActivityOnSecondaryDisplay()
284 builder -> builder.setTargetActivity(NON_RESIZEABLE_ACTIVITY).setNewTask(true)); in testMoveNonResizeableActivityToSecondaryDisplay()
296 moveActivityToRootTaskOrOnTop(NON_RESIZEABLE_ACTIVITY, externalFrontStackId); in testMoveNonResizeableActivityToSecondaryDisplay()
301 .getDisplayByActivity(NON_RESIZEABLE_ACTIVITY), in testMoveNonResizeableActivityToSecondaryDisplay()
304 waitAndAssertTopResumedActivity(NON_RESIZEABLE_ACTIVITY, newDisplay.mId, in testMoveNonResizeableActivityToSecondaryDisplay()
326 mBroadcastActionTrigger.launchActivityNewTask(getActivityName(NON_RESIZEABLE_ACTIVITY)); in testLaunchNonResizeableActivityFromSecondaryDisplaySameTask()
327 waitAndAssertTopResumedActivity(NON_RESIZEABLE_ACTIVITY, newDisplay.mId, in testLaunchNonResizeableActivityFromSecondaryDisplaySameTask()
[all …]
DPinnedStackTests.java39 import static android.server.wm.app.Components.NON_RESIZEABLE_ACTIVITY;
528 extraString(EXTRA_START_ACTIVITY, getActivityName(NON_RESIZEABLE_ACTIVITY))); in testAutoEnterPictureInPictureLaunchActivity()
530 new WaitForValidActivityState(NON_RESIZEABLE_ACTIVITY)); in testAutoEnterPictureInPictureLaunchActivity()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java80 public static final ComponentName NON_RESIZEABLE_ACTIVITY = component("NonResizeableActivity"); field in Components