Oce*_*lue 2 android android-animation
我有一个通过单击网页中的链接启动的应用程序.
没问题,工作正常.
然而,应用程序主屏幕只是在浏览器上磕磕碰碰.我想添加一点动画.也许它可以淡入或什么的.我已经在ImageView上完成了动画,但不确定如何在完整的布局屏幕上进行动画制作.有任何想法吗?
Hou*_*ine 10
我想你可以简单地使用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);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
9102 次 |
| 最近记录: |