android佈局中模仿底部彈框顯示隱藏動畫

1.tranlate_dialog_out(顯示動畫)

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromYDelta="100%p" android:toYDelta="0" android:duration="400"/>
</set>

2.tranlate_dialog_in(隱藏動畫)

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromYDelta="0" android:toYDelta="100%p" android:duration="400"/>

3.顯示佈局

bottom.startAnimation(AnimationUtils.loadAnimation(VodPlayerActivity.this, R.anim.tranlate_dialog_out));
  bottom.setVisibility(View.VISIBLE);

4.隱藏佈局

 bottom.startAnimation(AnimationUtils.loadAnimation(VodPlayerActivity.this, R.anim.tranlate_dialog_in));
   bottom.setVisibility(View.GONE);
發佈了58 篇原創文章 · 獲贊 40 · 訪問量 7萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章