2011-11-16 61 views
1

我需要在我的android應用程序中實現新聞提要。它應該像API演示中的動畫一樣動畫化。但在我的應用程序中,我得到一個包含圖像及其標題的對象數組。我如何使用ViewFlipper或其他方式爲新聞提要製作動畫?在android中向上推動動畫?

在此先感謝!

回答

2

AniationFactory.java有功能outFromBottom()

因此,可以說你有yourView並希望將其添加到一個垂直LinearLayout稱爲feedLL

使用下面的代碼:

Animation animation = AnimationFactory.inFromBottom(); 
animation.setDuration(1000); 
yourView.setVisibility(View.GONE); 
yourView.setAnimation(animation); 
feedLL.addView(yourView); 
yourView.setVisibility(View.VISIBILE); 
+0

這是真棒!爲我工作。 – Chrishan