gpt4 book ai didi

android - 如何使动画过渡android

转载 作者:行者123 更新时间:2023-11-30 03:24:09 24 4
gpt4 key购买 nike

我怎样才能像这样制作 Android 过渡动画或者我怎样才能找到它??????
link
eclipse 中是否有动画我试过这个我没有成功

   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);
}

提前致谢

最佳答案

关于 this page 的例子很少.你的错误来自你的 overPendingTransition :您必须在资源中定义过渡,然后使用它们:

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

here , 是动画的工作原理。

但它不存在任何过渡库,您可能在 Internet 上找不到一些,但它不会是您正在寻找的库(它们是 Windows Movie Maker 过渡)。我不认为 Google 的 xml 允许您进行这些转换,您必须更简单!

希望对您有所帮助!

关于android - 如何使动画过渡android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18542893/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com