我需要知道android中的事务风格是否可行,例如,如果我启动我需要去的主要活动或切换到第二个活动,我需要一些动画如popup,pop for left..etc,用于下一个活动视图。是否可能?
答案 0 :(得分:1)
使用Intend
进行其他活动。
Intent intent = new Intent(SourceActivity.this, TagetActivity.class);
startActivity(intent);
进一步了解打算:
http://www.castlerockresearch.in/dev/2010/08/understanding-intents-and-intent-filters-in-android/
对于弹出动画,请看此链接:
http://android-codes-examples.blogspot.com/2011/04/animated-customized-popup-transparent.html
答案 1 :(得分:0)
您可以使用Intents在两项活动之间切换。 对于动画部分,请查看此How to provide animation when calling another activity in Android?
这也很有用:
BR, mybecks