2013-01-13 124 views
1

我有我從其中添加項目的listView。 我想動畫添加項目和列表視圖的其餘部分應該滑動。 動畫效果應該是從下到上。 我試過翻譯動畫,但它只滑動添加項目。 感謝如何從底部到頂部在android中動畫視圖

+0

檢查[這個問題](http://stackoverflow.com/questions/4526288/how-to-使-A-按鈕-BAR-滑入從 - 底在單擊-複選框合listvie) – Harpreet

回答

5
public static void slideToBottom(View view){ 
    TranslateAnimation animate = new TranslateAnimation(0,0,0,view.getHeight()); 
    animate.setDuration(500); 
    animate.setFillAfter(true); 
    view.startAnimation(animate); 
    view.setVisibility(View.GONE); 
} 

public static void slideToTop(View view){ 
    TranslateAnimation animate = new TranslateAnimation(0,0,view.getHeight(),0); 
    animate.setDuration(500); 
    animate.setFillAfter(true); 
    view.startAnimation(animate); 
    view.setVisibility(View.VISIBLE); 
} 
相關問題