java - Do I have to use an animation to change an Android activity's view? -
Everywhere I look online, it seems that I have to use the animation to change the mind dynamically (eg Slide in, out). Do I have to do this, or can I just simplify contentview () on every new activity?
Thank you!
There's nothing to say that you have to use animation just because your intent object, start your activity with
startActivity
or startActivityForResult
, and then call setContentView
when it loads. No animation is necessary.
H.H.
Comments
Post a Comment