I have an activity with which I live with transition animations, for example:
ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation(activity, view, transitionStr); ActivityCompat.startActivity(activity, intent, options.toBundle());
However, when I return, I do not want the animation to run in the reverse order. Is it possible? I am using AppCompatActivity from appcompat-v7: 23.1.1.
source share