Android - Replace the default Activity animation [closed]
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this questionI want to add my custom animation to an activity. (Other then the default right to left slide)
Any suggestion?
Add this code in your activity:
super.onCreate(savedInstanceState);
overridePendingTransition(R.anim.pull_in_from_left, R.anim.hold);
setContentView(R.layout.main);
精彩评论