0

I want to add my custom animation to an activity. (Other then the default right to left slide)

Any suggestion?

Shaiful
  • 5,561
  • 5
  • 37
  • 41
  • have you looked at this post [http://stackoverflow.com/questions/2651360/how-to-provide-animation-when-calling-another-activity-in-android](http://stackoverflow.com/questions/2651360/how-to-provide-animation-when-calling-another-activity-in-android) – ingsaurabh Mar 14 '11 at 12:07

1 Answers1

1

Add this code in your activity:

super.onCreate(savedInstanceState);
overridePendingTransition(R.anim.pull_in_from_left, R.anim.hold);
setContentView(R.layout.main);
Mihai Iorga
  • 38,217
  • 14
  • 107
  • 106
ANIL
  • 19
  • 4