其他分享
首页 > 其他分享> > Android——Animation(补间动画)

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% 的位置    -->

标签:动画,位置,xxx,Animation,组件,补间,Android,txt,位移
来源: https://www.cnblogs.com/remix777/p/15159644.html