I know I can change activity transition using the following code right after startActivity() or finish()
activity.overridePendingTransition(R.anim.activity_close_enter, R.anim.activity_close_exit);
But if I have ten activities in my app, I have to do that ten times; and it is quite hard to modify. So I’m wondering if there is a way to set transition for all activities within the application at once. Is there any corresponding configuration in AndroidManifest.xml?
Thanks!
You want to first create a
<style>in res/styles.xml, like this:Then you can apply the style to a theme, in the same file:
And finally apply the theme to your activities in the manifest:
Look at these links for reference: