Shahjahan Samoon
Shahjahan Samoon

Reputation: 1

On Android 14 Samsung exit transition on activity is wobbling

On Android 14 Samsung exit transition on activity is wobbling. How to avoid such behavior when back pressed.

Custom animation for activity is not working.

Enter transition is working fine but when clear click on back button the screen is shaking and wobbling animation

Upvotes: 0

Views: 71

Answers (1)

Javad Vovin
Javad Vovin

Reputation: 61

We have the same effect and it was caused by overridePendingTransition(). Previously we wanted to show animation on new activity, so we created an alpha animation with 1 milisecond duration, and pass it to overridePendingTransition(). now we just pass 0 to it and it fixed our wobbling problem.

Upvotes: 0

Related Questions