android view动画实现从边缘滑出的效果怎么做

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android view动画实现从边缘滑出的效果怎么做相关的知识,希望对你有一定的参考价值。

参考技术A 添加layout布局文件,在xml设置动画属性即可,上下左右四个方向均可以实现 。animation in / off
例如:
1.slide_in_right

<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="100"
android:fromXDelta="-100.0%p"
android:toXDelta="0.0" />
</set>

2.slide_in_right

<set xmlns:android="http://schemas.android.com/apk/res/android" >

<translate
android:duration="100"
android:fromXDelta="100.0%p"
android:toXDelta="0.0" />

</set>

3.slide_out_left

<set xmlns:android="http://schemas.android.com/apk/res/android" >

<translate
android:duration="100"
android:fromXDelta="0.0"
android:toXDelta="-100.0%p" />

</set>

4.slide_out_right

<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="100"
android:fromXDelta="0.0"
android:toXDelta="100.0%p"/>
</set>

具体可参考以下博文:

activity左进右出动画 http://blog.csdn.net/csdn_yang123/article/details/52292931

Android 仿微信Activity进入退出动画http://blog.csdn.net/jdsjlzx/article/details/43736707

以上是关于android view动画实现从边缘滑出的效果怎么做的主要内容,如果未能解决你的问题,请参考以下文章

android view动画实现从边缘滑出的效果怎么做

vue 路由切换动画(滑入,滑出效果)

Android 自定义上拉抽屉+组合动画效果

将对象保持在 CoreAnimation 效果之上

如何从屏幕底部向上滑出一个view-Android开发问答

一起来学习android自定义控件3——边缘凹凸的View