活动之间的切换与Java动画(编程定义)定义、动画、Java

由网友(我不是猴,你为什么耍我)分享简介:如果我已经在XML定义我的动画,然后我可以活动之间的动画像If i have my animations defined in xml then i can animate between activities like //Calls a new Activity startActivity(new Inte...

如果我已经在XML定义我的动画,然后我可以活动之间的动画像

If i have my animations defined in xml then i can animate between activities like

//Calls a new Activity  
startActivity(new Intent(this, NewActivity.class));  

//Set the transition -> method available from Android 2.0 and beyond  
overridePendingTransition(R.anim.push_left_in,R.anim.push_up_out);  

但是我对Java的定义我的动画。功能overridePendingTransition(INT,INT)发生INT论据动画。如何使用编程方式定义动画呢?

But I have my animation defined in Java. Function "overridePendingTransition(int , int)" takes int arguments for animations. How can I use programmatically defined animations instead?

推荐答案

我找到了解决方案,这在这里http://blog.robert-heim.de/karriere/android-startactivity-rotate-3d-animation-activityswitcher/comment-page-1/#comment-12025

I Found out solution for this here http://blog.robert-heim.de/karriere/android-startactivity-rotate-3d-animation-activityswitcher/comment-page-1/#comment-12025

阅读全文

相关推荐

最新文章