手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android实现循环平移动画示例
Android实现循环平移动画示例
摘要:实现用一张背景图做循环从左往右平移动画。1、实现两个animationxml文件,一个起始位置在-100%p,一个在0%p。设置repeat...

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

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

复制代码 代码如下:

<"1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator">

<translate android:fromXDelta="0%p" android:toXDelta="100%p"

android:repeatMode="restart"

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

android:repeatCount="infinite"

android:duration="30000" />

</set>

复制代码 代码如下:

<"1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator">

<translate android:fromXDelta="-100%p" android:toXDelta="0%p"

android:repeatMode="restart"

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

android:repeatCount="infinite"

android:duration="30000" />

</set>

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

复制代码 代码如下:

<ImageView

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" />

<ImageView

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);

【Android实现循环平移动画示例】相关文章:

android 实现圆角图片解决方案

Android仿QQ登陆窗口实现原理

Android安卓中循环录像并检测内存卡容量

Android开发笔记之:消息循环与Looper的详解

Android中实现动态切换组件背景的操作

Android软件开发环境搭建

Android 开发环境配置问题

Android开发之相对布局

android底部菜单栏实现原理与代码

Android HTTP 实现与服务器通信

精品推荐
分类导航