Home
last modified time | relevance | path

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

/cts/tests/framework/base/activitymanager/src/android/server/am/
DActivityManagerAppConfigurationTests.java38 import static android.server.am.Components.RESIZEABLE_ACTIVITY;
105 launchActivity(RESIZEABLE_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testConfigurationUpdatesWhenResizedFromFullscreen()
106 final ReportedSizes fullscreenSizes = getActivityDisplaySize(RESIZEABLE_ACTIVITY, in testConfigurationUpdatesWhenResizedFromFullscreen()
110 setActivityTaskWindowingMode(RESIZEABLE_ACTIVITY, WINDOWING_MODE_SPLIT_SCREEN_PRIMARY); in testConfigurationUpdatesWhenResizedFromFullscreen()
111 final ReportedSizes dockedSizes = getActivityDisplaySize(RESIZEABLE_ACTIVITY, in testConfigurationUpdatesWhenResizedFromFullscreen()
128 launchActivity(RESIZEABLE_ACTIVITY, WINDOWING_MODE_SPLIT_SCREEN_PRIMARY); in testConfigurationUpdatesWhenResizedFromDockedStack()
129 final ReportedSizes dockedSizes = getActivityDisplaySize(RESIZEABLE_ACTIVITY, in testConfigurationUpdatesWhenResizedFromDockedStack()
133 setActivityTaskWindowingMode(RESIZEABLE_ACTIVITY, WINDOWING_MODE_FULLSCREEN); in testConfigurationUpdatesWhenResizedFromDockedStack()
134 final ReportedSizes fullscreenSizes = getActivityDisplaySize(RESIZEABLE_ACTIVITY, in testConfigurationUpdatesWhenResizedFromDockedStack()
151 launchActivity(RESIZEABLE_ACTIVITY, in testConfigurationUpdatesWhenRotatingWhileFullscreen()
[all …]
DActivityManagerMultiDisplayTests.java38 import static android.server.am.Components.RESIZEABLE_ACTIVITY;
252 launchActivityOnDisplay(RESIZEABLE_ACTIVITY, newDisplay.mId); in testMoveNonResizeableActivityToSecondaryDisplay()
262 RESIZEABLE_ACTIVITY); in testMoveNonResizeableActivityToSecondaryDisplay()
656 getLaunchActivityBuilder().setTargetActivity(RESIZEABLE_ACTIVITY).execute(); in testLaunchActivitiesAffectsVisibility()
657 mAmWmState.waitForValidState(RESIZEABLE_ACTIVITY); in testLaunchActivitiesAffectsVisibility()
659 mAmWmState.assertVisibility(RESIZEABLE_ACTIVITY, true /* visible */); in testLaunchActivitiesAffectsVisibility()
775 launchActivityOnDisplay(RESIZEABLE_ACTIVITY, newDisplay.mId); in tryCreatingAndRemovingDisplayWithActivity()
777 RESIZEABLE_ACTIVITY); in tryCreatingAndRemovingDisplayWithActivity()
786 assertActivityLifecycle(RESIZEABLE_ACTIVITY, false /* relaunched */, logSeparator); in tryCreatingAndRemovingDisplayWithActivity()
787 mAmWmState.waitForValidState(new WaitForValidActivityState.Builder(RESIZEABLE_ACTIVITY) in tryCreatingAndRemovingDisplayWithActivity()
[all …]
DActivityManagerVrDisplayTests.java22 import static android.server.am.Components.RESIZEABLE_ACTIVITY;
229 launchActivity(RESIZEABLE_ACTIVITY); in testActivityLaunchPostVr()
230 mAmWmState.computeState(RESIZEABLE_ACTIVITY); in testActivityLaunchPostVr()
233 mAmWmState.assertVisibility(RESIZEABLE_ACTIVITY, true /* visible */); in testActivityLaunchPostVr()
236 mAmWmState.assertFocusedActivity("Launched activity must be focused", RESIZEABLE_ACTIVITY); in testActivityLaunchPostVr()
241 getActivityName(RESIZEABLE_ACTIVITY), frontStack.mResumedActivity); in testActivityLaunchPostVr()
DActivityManagerSplitScreenTests.java34 import static android.server.am.Components.RESIZEABLE_ACTIVITY;
539 launchActivity(RESIZEABLE_ACTIVITY, in testMinimizedStateWhenUnlockedAndUnMinimized()
/cts/tests/framework/base/activitymanager/app/src/android/server/am/
DComponents.java79 public static final ComponentName RESIZEABLE_ACTIVITY = component("ResizeableActivity"); field in Components