android animation on orientation change

2020-06-25 05:00发布

问题:

I have to give an animation effect when i change the orientation of screen from Portrait to landscape and vice versa. How can i go about doing this.

Any help would be appreciated. Thanks!

回答1:

use overridePendingTransition (int enterAnim, int exitAnim) in your onCreate() method of activity. and your activity should not having android:configChanges="orientation" tag in manifest, otherwise oncreate will not be called on orientation change...hope this will help you...what i got from you