android--利用Animation.RELATIVE_TO_SELF做出个性化的动画

在Android开发中,Animation是用来给控件制作效果的。大多数的控件都可以用这个类,这个类包含了4种基本动作,分别为移动,旋转,淡入淡出,缩放。

使用Animation的两种方式:

方式一:在代码中创建、设置以及启动动画(移动TranslateAnimation/旋转RotateAnimation/淡入淡出AlphaAnimation/缩放ScaleAnimation),这样的优点是可以方便调试程序效果;

方式二:在xml中对控件的属性做设置,好处是代码的重用性比较高,缺点是不方便调试。

下面我们重点针对代码创建的方式来举例:

在开始示例之前我们普及两个非常重要的参考标准:Animation.RELATIVE_TO_SELF(相对于自身)、Animation.RELATIVE_TO_PARENT(相对于父控件(容器))。

1、imageView控件由完全透明到完全不透明变化,持续时间为0.2s;

	private void toVisibleAnim(View view)
	{
		AlphaAnimation alphaAnimation = new AlphaAnimation(0.0f, 1.0f);
		alphaAnimation.setDuration(200);
		view.startAnimation(alphaAnimation);
	}

2、imageView控件由原来大小尺寸沿自身尺寸中心逐渐缩放到0,持续时间为0.2s;

	private void toHideAnim(View view)
	{
		ScaleAnimation scaleAnimation = new ScaleAnimation(1.0f, 0.0f, 1.0f, 0.0f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
		scaleAnimation.setDuration(200);
		view.startAnimation(scaleAnimation);
	}

3、imageView控件以自身中心为圆心旋转90度,持续时间为0.2s;

	private void rotateAnim(View view)
	{
		view.setVisibility(View.VISIBLE);
		RotateAnimation rotateAnimation = new RotateAnimation(0, 90, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
		rotateAnimation.setDuration(200);
		view.startAnimation(rotateAnimation);
	}

4、imageView控件从自身位置的最右端开始向左水平滑动了自身的宽度,持续时间为0.2s;

	private void showScrollAnim(View view) {
		view.setVisibility(View.VISIBLE);
		TranslateAnimation mShowAction = new TranslateAnimation(
				Animation.RELATIVE_TO_SELF, 1.0f, Animation.RELATIVE_TO_SELF,
				0.0f, Animation.RELATIVE_TO_SELF, 0.0f,
				Animation.RELATIVE_TO_SELF, 0.0f);
		mShowAction.setDuration(200);
		view.startAnimation(mShowAction);
	}

5、image控件从自身位置的最左端开始水平向右滑动隐藏动画,持续时间0.2s

	private void hiddenScrollAnim(LinearLayout view) {
		view.setVisibility(View.GONE);
		TranslateAnimation mHiddenAction = new TranslateAnimation(
				Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
				1.0f, Animation.RELATIVE_TO_SELF, 0.0f,
				Animation.RELATIVE_TO_SELF, 0.0f);
		mHiddenAction.setDuration(200);
		view.startAnimation(mHiddenAction);
	}
时间: 2024-11-03 15:05:24

android--利用Animation.RELATIVE_TO_SELF做出个性化的动画的相关文章

Android animator Animation动画效果详解

Android的animation由四种类型组成 XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 JavaCode中 AlphaAnimation 渐变透明度动画效果 ScaleAnimation 渐变尺寸伸缩动画效果 TranslateAnimation 画面转换位置移动动画效果 RotateAnimation 画面转移旋转动画效果 Android动画模式 Animation主要有两种

Android中Animation 详细解读

Animation从总体来说可以分为两类: 1.Tweened Animations:该类提供了旋转,移动,伸展,淡入淡出等效果 Tweened Animations也有四种类型: 1.     Alpha:淡入淡出效果 2.     Scale:缩放效果 3.     Rotate:旋转效果 4.     Translate:移动效果 设置动画有两种方式:在xml文件中或者在Java代码中 在XML中设置动画效果步骤: 1.     在res文件夹下新建一个名为anim的文件夹 2.    

Android:Animation动画

Animation主要分为两类:一类是渐变动画tweened animation,一类是逐帧动画frame-by-frame animation.渐变动画就是用一帧图片产生四种效果:1.alpha,2.rotate,3.scale,4.translates,可以通过代码或者xml文件两种方法实现.而逐帧动画就是由一系列图片通过快速播放达到动的效果.另外还有一些Animationset.AnimationListener.LayoutAnimationController这些在实例中穿插着讲. 实

Android学习——Animation动画效果

1.Android动画模式: 1>tweened animation: 渐变动画: 2>frame by frame: 画面转换动画. 2.Android的Animation动画由四种类型组成: XML alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 Java代码 AlphaAnimation 渐变透明度动画效果 ScaleAnimation 渐变尺寸伸缩动画效果 TranslateAnimat

Android Property Animation动画

3.0以前,android支持两种动画模式,tween animation,frame animation,在android3.0中又引入了一个新的动画系统:property animation,这三种动画模式在SDK中被称为property animation,view animation,drawable animation. 可通过NineOldAndroids项目在3.0之前的系统中使用Property Animation 1. View Animation(Tween Animatio

Android:关于Animation的几种常见的动画

适当的添加一些动画效果,能够获得更好的用户体验,这次讲讲一些常见的动画~ 如:透明动画,渐变动画等等. 先看一下运行截图: 附上代码,注释写在代码中: MainActivity.java: package com.vrinux.animotiondemo; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.animation.AlphaAnima

android中Animation动画的连续播放与播放完毕后停留在最后的状态

我们做安卓应用的苦逼程序员们常常会需要用到Animation也就是动画.比如做地图功能的时候.我们在手机旋转时需要根据手机重力感应来调整地图的角度,让它上面的“北”一直指向地球的北面...好多人做动画的时候会遇到这么两个难题(我也曾经遇到过):1:动画执行完了一遍后又立刻恢复到了初始状态,或者动画只能不断循环动作.[问题:我想让动画动到某个位置或转到某个角度后停在那里,该如何做呢?]2:点击按钮一.动画从0度转到了10度,我再点击按钮二.需要动画从之前的10度位置再继续转到20度.再点击按钮三.

Android ListView Animation 布局动画

AnimationSet set = new AnimationSet(false); Animation animation = new AlphaAnimation(0,1); //AlphaAnimation 控制渐变透明的动画效果 animation.setDuration(500); //动画时间毫秒数 set.addAnimation(animation); //加入动画集合 animation = new TranslateAnimation(1, 13, 10, 50); //S

利用css3的animation实现点点点loading动画效果(二)

box-shadow实现的打点效果 简介 box-shadow理论上可以生成任意的图形效果,当然也就可以实现点点点的loading效果了. 实现原理 html代码,首先需要写如下html代码以及class类名: 订单提交中<span class="dotting"></span> css代码 .dotting { display: inline-block; min-width: 2px; min-height: 2px; box-shadow: 2px 0 c