Android动画 之 Tween Animation(TranslateAnimation 位置渐变)

public class

TranslateAnimation

extends Animation

java.lang.Object

   ↳

android.view.animation.Animation

 

   ↳

android.view.animation.TranslateAnimation

一、配置xml文件res/anim_translate.xml

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
	android:fromXDelta="30"
	android:toXDelta="100"
	android:fromYDelta="20"
	android:toYDelta="300"
	android:repeatCount="20"
	android:duration="500"
>
</translate>


二、开启动画

iv_show = (ImageView) findViewById(R.id.iv_show);
final TranslateAnimation aa = (TranslateAnimation) AnimationUtils
	.loadAnimation(this, R.anim.anim_translate);
iv_show.startAnimation(aa);


附:属性设置

From class android.view.animation.Animation

Attribute Name Related Method Description
android:detachWallpapersetDetachWallpaper(boolean)Special option for window animations: if this window is on top of a wallpaper, don't animate the wallpaper with it. 
android:durationsetDuration(long)Amount of time (in milliseconds) for the animation to run. 
android:fillAftersetFillAfter(boolean)When set to true, the animation transformation is applied after the animation is over. 
android:fillBeforesetFillBefore(boolean)When set to true, the animation transformation is applied before the animation has started. 
android:fillEnabledsetFillEnabled(boolean)When set to true, fillAfter is taken into account. 
android:interpolatorsetInterpolator(Interpolator)Defines the interpolator used to smooth the animation movement in time. 
android:repeatCountsetRepeatCount(int)Defines how many times the animation should repeat. 
android:repeatModesetRepeatMode(int)Defines the animation behavior when it reaches the end and the repeat count is greater than 0 or infinite. 
android:startOffsetsetStartOffset(long)Delay in milliseconds before the animation runs, once start time is reached. 
android:zAdjustmentsetZAdjustment(int)Allows for an adjustment of the Z ordering of the content being animated for the duration of the animation. 
 
注意:
fromXDelta fromYDelta表示动画的起始位置
toXDelta toYDelta 表示动画的结束位置(默认以图片的左上顶点作为标准)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值