You cannot take screenshot of a screen which is not on the display stack ,or which is below a particular screen. The docs say that Display.screenshot() Takes a screenshot of the entire screen and saves it into a Bitmap.
If you want to have a screen transition animation to go from one screen to another, you can do the following.
UiEngineInstance engine = Ui.getUiEngineInstance();
TransitionContext transitionContextPush = new TransitionContext(
TransitionContext.TRANSITION_SLIDE);
transitionContextPush.setIntAttribute(
TransitionContext.ATTR_DURATION, 150);
transitionContextPush.setIntAttribute(
TransitionContext.ATTR_DIRECTION,
TransitionContext.DIRECTION_LEFT);
TransitionContext transitionContextPop = new TransitionContext(
TransitionContext.TRANSITION_SLIDE);
transitionContextPop.setIntAttribute(
TransitionContext.ATTR_DURATION, 150);
transitionContextPop.setIntAttribute(
TransitionContext.ATTR_DIRECTION,
TransitionContext.DIRECTION_RIGHT);
transitionContextPop.setIntAttribute(
TransitionContext.ATTR_KIND,
TransitionContext.KIND_OUT);
engine.setTransition(null, thisScreen,
UiEngineInstance.TRIGGER_PUSH,
transitionContextPush);
engine.setTransition(thisScreen, null,
UiEngineInstance.TRIGGER_POP,
transitionContextPop);
}
UiApplication.getUiApplication().pushScreen(thisScreen);