本文介紹了如何更改應用程序的啟動動畫?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
有沒有辦法以編程方式更改應用程序啟動動畫?
每當我啟動應用程序時,它的動畫效果就像來自屏幕底部,但我希望它來自屏幕頂部。
感謝任何幫助。
推薦答案
您可以簡單地使用AlphaAnimation,并將其應用到您的活動布局中,如下所示,onCreate()方法:
super.onCreate(savedInstace);
this.setContentView(R.layout.main);
RelativeLayout layout = findViewById(R.id.idLayout);
AlphaAnimation animation = new AlphaAnimation(0.0f , 1.0f ) ;
animation.setFillAfter(true);
animation.setDuration(1200);
//apply the animation ( fade In or whatever you want) to your LAyout
layout.startAnimation(animation);
這篇關于如何更改應用程序的啟動動畫?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,