Android开发

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

这篇关于Android——Animation(补间动画)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!