Android——Animation(补间动画)
2021/8/19 6:36:03
本文主要是介绍Android——Animation(补间动画),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
介绍
translate:位移动画,从组件自身的x,y位置位移到相对的x,y位置
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:duration="240" android:fromYDelta="100%p" android:interpolator="@android:anim/decelerate_interpolator" android:toYDelta="0%p" />
属性
fromXDelta="xxx"
fromYDelta="xxx"
toXDelta="xxx"
toYDelta="xxx"
fromXDelta , fromYDelta : 动画开始时,组件所在x,y坐标位置。默认是组件左上角 0 ,0位置
toXDelta,toYDelta:动画结束时,相对自身位移到什么位置:x,y。
可以使用具体数值,%(相对自身长度多少),%p(相对父容器长度多少)
使用
1.在资源中新建Anim文件夹
2.
<set android:duration="2000" xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="0" android:fromYDelta="0" android:toXDelta="0" android:toYDelta="100%" /> </set>
Animation animation = AnimationUtils.loadAnimation(this, R.anim.anim_2); TextView txt = findViewById(R.id.txt); txt.startAnimation(animation);
<!-- 相对于自身位移到 0,0 + 长度*100% 的位置 -->
这篇关于Android——Animation(补间动画)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-01-18android.permission.read_media_video
- 2024-01-18android_getaddrinfo failed eai_nodata
- 2024-01-18androidmo
- 2024-01-15Android下三种离屏渲染技术
- 2024-01-09Android 蓝牙使用
- 2024-01-06Android对接华为AI - 文本识别
- 2023-11-15代码安全之代码混淆及加固(Android)
- 2023-11-10简述Android语音播报TTS
- 2023-11-06Android WiFi工具类
- 2023-07-22Android开发未来的出路