2013-08-30 108 views
1

我該如何做到這樣的過渡動畫機器人或如何找到它??????
link
,是有沒有動畫月食我試試這個,我別無成功如何使動畫過渡android

Intent janken=new Intent(Main2.this,Janken.class); 
    janken.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_NO_ANIMATION); 
    startActivity(janken); 

,並提前這也

public void overridePendingTransition(int enterAnim, int exitAnim) { 
    super.overridePendingTransition(0, 0); 
} 

感謝

回答

1

您對this page幾個例子。 你的錯誤來自於你overPendingTransition: 您對定義在ressources過渡,然後使用它們:

overridePendingTransition(R.anim.anim_to_enter, R.anim.anim_to_exit); 

而且here,是動畫是如何工作的。

但它並不存在任何轉換庫,您可能在互聯網上找不到任何庫,但它不會是您正在查找的那些(它們是Windows Movie Maker轉換)。我不認爲Google的xml允許你做這些轉換,你必須更簡單!

希望它有幫助!