您的位置:首页 > 移动开发 > Android开发

android布局中模仿底部弹框显示隐藏动画

2017-10-20 09:03 573 查看
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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息