I want to add my custom animation to an activity. (Other then the default right to left slide)
Any suggestion?
I 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);