You can only achieve what you are describing, with very carefully selected custom activity transitions combined with animations for ImageViews. If it is possible to create your own activity transitions, see Activity.overridePendingTransition() . See Also this official guide for general information on creating animations.
If possible, consider redesigning so that you can jump between fragments within the same action or using ViewSwitcher, for example:
viewSwitcher.setInAnimation(this, R.anim.in_animation); viewSwitcher.setOutAnimation(this, R.anim.out_animation); viewSwitcher.showNext();
source share