Facing problems with Shared Element transition animation on Android 7 (Nougat)
In my case Activity A calls Activity B using shared element transition and pressing back on B finishes it and shows A. Now on A onStart is never called.
Working fine on previous versions of Android.
Strange behaviour. Need help
I solved the issue by defining the enter and exit transitions in code instead of defining it in
themes.xml
-> I removed the following lines of code from thethemes.xml
:And added the following lines to my activities (you have to add in
onCreate
before adding any content to the activity):With this code I just set the transitions for the activity - if you also want to change the content transitions you need to call
getWindow().requestFeature(Window.FEATURE_CONTENT_TRANSITIONS);