tags:

views:

28

answers:

1

Everywhere I look online, it seems that I must use an animation to change views dynamically (like slide in, out). Do I have to do this, or can I simple just setContentView() on each new activity?

Thanks!

+1  A: 

There's nothing to say you have to use an animation. Just create your intent object, start your activity with startActivity or startActivityForResult, and then call setContentView when it loads. No animation necessary.

HTH.

Andy