gpt4 book ai didi

Android:启动带有动画的应用程序

转载 作者:太空狗 更新时间:2023-10-29 15:39:42 36 4
gpt4 key购买 nike

我有一个通过点击网页中的链接启动的应用。

没问题,效果很好。

但是,应用程序的主屏幕只是将浏览器挡开。我想添加一点动画。也许它可以淡入或什么的。我已经在 ImageView 上完成了补间动画,但不确定如何在整个布局屏幕上完成。有什么想法吗?

最佳答案

我认为您可以简单地使用 AlphaAnimation,并像这样在 onCreate 方法中将其应用到您的 Activity 布局:

super.onCreate(savedInstace);
this.setContentView(R.layout.main);
LinearLayout layout = (LinearLayout) findViewById(R.id.idLayout);
AlphaAnimation animation = new AlphaAnimation(0.0f , 1.0f ) ;
animation.setFillAfter(true);
animation.setDuration(1200);
//apply the animation ( fade In ) to your LAyout
layout.startAnimation(animation);

关于Android:启动带有动画的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6101578/

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