要实现视图从屏幕底部滑入的动画效果,可以使用Android中的属性动画或者布局动画。
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="100%p"
android:toYDelta="0%p"
android:duration="500"/>
</set>
然后在代码中加载这个动画文件,并给目标视图设置动画:
Animation animation = AnimationUtils.loadAnimation(context, R.anim.slide_in_bottom);
view.startAnimation(animation);
<?xml version="1.0" encoding="utf-8"?>
<layoutAnimation
xmlns:android="http://schemas.android.com/apk/res/android"
android:delay="0.5"
android:animation="@anim/slide_in_bottom"/>
然后在布局文件中给目标视图设置android:layoutAnimation属性:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutAnimation="@anim/slide_in_bottom_anim">
<!-- 子视图 -->
</LinearLayout>
通过以上两种方法,就可以实现视图从屏幕底部滑入的动画效果。