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万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章