android 从左向右平移_Android实现循环平移动画示例

本文介绍了如何在Android中创建一个背景图片从左至右的循环平移动画。通过设置两个XML动画文件,分别设置起始位置和重复模式,利用线性插值器和无限重复次数实现30秒的动画效果。在布局中使用两个相同的视图,并分别应用这两个动画,最终通过AnimationUtils加载并启动动画。
摘要由CSDN通过智能技术生成

实现用一张背景图做循环从左往右平移动画。

1、实现两个animation xml文件,一个起始位置在-100%p ,一个在0%p。设置repeat属性为循环,重复。

android:repeatMode="restart"

android:interpolator="@android:anim/linear_interpolator"

android:repeatCount="infinite"

android:duration="30000" />

android:repeatMode="restart"

android:interpolator="@android:anim/linear_interpolator"

android:repeatCount="infinite"

android:duration="30000" />

2、在view的layout里面放两个一样的view做背景,view的动画分别对应上面那两个animation。

android:id="@+id/animation_top_left"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:contentDescription="@string/logo"

android:src="@drawable/home_animation_bg" />

android:id="@+id/animation_top_right"  android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:contentDescription="@string/logo"

android:src="@drawable/home_animation_bg" />

Animation anim = AnimationUtils.loadAnimation(mContext, R.anim.home_animation);

ImageView animationTopRightView = (ImageView)this.findViewById(R.id.animation_top_right);

animationTopRightView.startAnimation(anim);

Animation anim2 = AnimationUtils.loadAnimation(mContext, R.anim.home_animation2);

ImageView animationTopLeftView = (ImageView)this.findViewById(R.id.animation_top_left);

animationTopLeftView.startAnimation(anim2);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值