码迷,mamicode.com
首页 > 移动开发 > 详细

第十五章,循环动画(Android)

时间:2015-07-27 16:21:01      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:translateanimation   循环动画   android   

package com.example.coco_demo02;

import android.app.Activity;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;
import android.widget.LinearLayout;

/*
 * 这种方法适用于这四种基本的动画:
 *	AlphaAnimation		透明度变化
 *	RotateAnimation		画面旋转
 *	ScaleAnimation		尺寸缩放
 *	TranslateAnimation	位置移动
 */

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);

		// 实例化布局
		LinearLayout llayout = new LinearLayout(this);
		// 添加到本activity中
		this.setContentView(llayout);

		// 实例化图片,设置高宽,且添加到布局中
		ImageView image = new ImageView(this);
		image.setMaxHeight(200);
		image.setMaxWidth(200);
		image.setPadding(10, 0, 0, 0);
		image.setImageResource(R.drawable.ic_launcher);

		llayout.addView(image);

		// 设置位置,参数:起始X,起始Y,结束X,结束Y
		TranslateAnimation animation = new TranslateAnimation(0, 0, 0, 50);
		// 运行时间
		animation.setDuration(3000);
		// 重复次数,不写就只执行一次
		animation.setRepeatCount(Animation.INFINITE);
		// 重复的模式,reverse 是开始到结束后,又动画恢复到开始
		animation.setRepeatMode(Animation.REVERSE);
		// 动画结束后的位置
		// animation.setFillAfter(true);
		// 为图片设置动画
		image.setAnimation(animation);
		// 动画开始
		animation.start();

	}

}

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

第十五章,循环动画(Android)

标签:translateanimation   循环动画   android   

原文地址:http://blog.csdn.net/qingbowen/article/details/47081171

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!