`

android实例-animation,Grid,ImageSwitcher.....

阅读更多

Android动画详细探究

转载:http://www.cnblogs.com/salam/archive/2010/10/05/1842935.html

附件实例包括:animation,AutoComplete,chronometer,时间日期,Elview,画廊,Grid,ImageSwitcher,RatingBar,SeekBar,PragressBar,Spinner

Animation是一个用于View,Surfaces和其它对象实现动画效果的抽象类,

其中常用的类是TranslateAnimation用于控制位置的改变

以下列出一些重要的属性和方法

Xml属性

android:duration:运行动画的时间

android:interpolator:定义用于平滑动画运动的时间内插

android:repeatCount:定义动画重复的时间

方法:

set:RepeatCount(int ):定义动画重复的时间

setRepeatMode(int):通过设置重复时间定义动画的行为

setStartOffset(long):以毫秒为单位的动画运行前的延迟,一旦开始时间就达到了

Cancel():取消动画

hasStarted():判断动画是否已在运行

initialize(int width, int height, int parentWidth, int parentHeight):初始化动画

reset():重置动画

Start()启动动画

其中还有一些常量

RESTART:重新运行

INFINITE:永无终止地运行


将动画用于指定的控件,所有继承自View的控件都有startAnimation(Animation)方法,通过调用此方法来应用动画于控件

AnimationUtils类介绍
为应用动画提供了通用的的方法,它有一个很重要的方法loadAnimation(Context,Animation)用于加载Animation的实例。

下面是一个实例 源码见附件:
Animationpage.xml是布局文件









Animlayout.xml是动画文件




主程序

package wjq.WidgetDemo;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.Transformation;
import android.view.animation.TranslateAnimation;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.ViewFlipper;
import android.widget.AdapterView.OnItemSelectedListener;

/**
* 动画Animation示例
* @author 记忆的永恒
*/
public class AnimationDemo extends Activity implements OnClickListener,OnItemSelectedListener {

private View v;
private String[] mStrings = { "向上", "向右", "穿越","旋转" };
private static final String[] INTERPOLATORS = { "加速", "Decelerate","减速", "左右", "Overshoot","Anticipate/Overshoot", "弹回" };
private ViewFlipper mFlipper;
private Spinner spinner;
private Spinner spinner1;
private ArrayAdapter aa;
private ArrayAdapter aa1;
/*
* (non-Javadoc)
*
* @see android.app.Activity#onCreate(android.os.Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState) {

// TODO Auto-generated method stub

super.onCreate(savedInstanceState);

setContentView(R.layout.animationpage);

v = findViewById(R.id.login);

v.setOnClickListener(this);

mFlipper = (ViewFlipper) findViewById(R.id.flipper);



// 反转

mFlipper.startFlipping();



spinner = (Spinner) findViewById(R.id.spinner);

aa = new ArrayAdapter(this,

android.R.layout.simple_spinner_item, mStrings);

aa.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

spinner.setAdapter(aa);

spinner.setOnItemSelectedListener(this);



spinner1 = (Spinner) findViewById(R.id.spinner1);

aa1 = new ArrayAdapter(this,

android.R.layout.simple_spinner_item, INTERPOLATORS);

aa1.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

spinner1.setAdapter(aa1);

spinner1.setOnItemSelectedListener(this);

}



@Override

public void onClick(View v) {

Animation shake = AnimationUtils.loadAnimation(this, R.anim.animlayout);

findViewById(R.id.pw).startAnimation(shake);

}



@Override

public void onItemSelected(AdapterView> parent, View view, int position,

long id) {

if (parent.getAdapter()==aa) {

switch (position) {



case 0:

mFlipper.setInAnimation(AnimationUtils.loadAnimation(this,

R.anim.push_up_in));

mFlipper.setOutAnimation(AnimationUtils.loadAnimation(this,

R.anim.push_up_out));

break;

case 1:

mFlipper.setInAnimation(AnimationUtils.loadAnimation(this,

R.anim.push_left_in));

mFlipper.setOutAnimation(AnimationUtils.loadAnimation(this,

R.anim.push_left_out));

break;

case 2:

mFlipper.setInAnimation(AnimationUtils.loadAnimation(this,

android.R.anim.fade_in));

mFlipper.setOutAnimation(AnimationUtils.loadAnimation(this,

android.R.anim.fade_out));

break;

default:

mFlipper.setInAnimation(AnimationUtils.loadAnimation(this,

R.anim.hyperspace_in));

mFlipper.setOutAnimation(AnimationUtils.loadAnimation(this,

R.anim.hyperspace_out));

break;

}

}



else {

final View target = findViewById(R.id.target);

final View targetParent = (View) target.getParent();

Animation anm = new TranslateAnimation(0.0f, targetParent

.getWidth()

- target.getWidth()

- targetParent.getPaddingLeft()

- targetParent.getPaddingRight(), 0.0f, 0.0f);



anm.setDuration(1000);

anm.setStartOffset(300);

anm.setRepeatMode(Animation.RESTART);

anm.setRepeatCount(Animation.INFINITE);



switch (position) {

case 0:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.accelerate_interpolator));

break;

case 1:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.decelerate_interpolator));

break;

case 2:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.accelerate_decelerate_interpolator));

break;

case 3:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.anticipate_interpolator));

break;

case 4:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.overshoot_interpolator));

break;

case 5:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.anticipate_overshoot_interpolator));

break;

case 6:

anm.setInterpolator(AnimationUtils.loadInterpolator(this,

android.R.anim.bounce_interpolator));

break;

}



target.startAnimation(anm);

}



}



@Override

public void onNothingSelected(AdapterView parent) {

// TODO Auto-generated method stub



}



}






















 

分享到:
评论

相关推荐

    移动互联网-图片切换ImageSwitcher.ppt

    移动互联网应用

    智能家居系统-图片切换ImageSwitcher.ppt

    智能家居系统应用

    ImageSwitcher.rar

    <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools=...

    安卓图片轮播广告轮播自动滚屏相关-ImageSwitcher.zip

    `ImageSwitcher` 是Android SDK提供的一种用于在两个视图之间切换的控件,非常适合用来实现图片轮播效果。在这个"安卓图片轮播广告轮播自动滚屏相关-ImageSwitcher.zip"压缩包中,包含了可能与实现这一功能相关的...

    android学习文档--控件2.pptx

    - **ImageSwitcher**:用于快速切换图片的控件。 - **TextSwitcher**:用于快速切换文本内容的控件。 - **TabHost**、**TabWidget**、**TabActivity**:这三个控件共同组成 Tab 布局,其中 `TabHost` 作为容器,`...

    Android高级应用源码-Gallery+ImageSwitcher+ViewFlipper实现手机查看壁纸效果.zip

    这个"Android高级应用源码-Gallery+ImageSwitcher+ViewFlipper实现手机查看壁纸效果.zip"的压缩包提供了一个很好的实例,展示了如何利用Gallery、ImageSwitcher和ViewFlipper组件来实现这一功能。下面我们将深入探讨...

    Android入门第十三篇之Gallery + ImageSwitcher.doc

    在Android开发中,`Gallery`和`ImageSwitcher`是两个非常实用的UI组件,用于创建滑动浏览图片的应用场景。本教程将介绍如何将这两个控件结合起来,以实现一个简单但功能完整的图片浏览器。 首先,`Gallery`控件是一...

    智能家居系统 图片切换ImageSwitcher.doc

    智能家居系统 图片切换ImageSwitcher.doc 学习资料 复习资料 教学资源

    安卓ImageSwitcher组件实例

    在Android开发中,ImageSwitcher是一个非常实用的UI组件,主要用于在两个ImageView之间进行平滑切换,常用于图片轮播或者加载前后效果对比等场景。本实例将深入探讨如何使用和自定义ImageSwitcher,以及它在实际项目...

    android ImageSwitcher实现实例

    在本实例中,我们将深入探讨如何在Android应用中使用ImageSwitcher来实现实时更换图片的功能。 首先,ImageSwitcher继承自ViewSwitcher,ViewSwitcher是Android提供的一个可以切换不同视图的容器,它可以在两个子...

    安卓开发-Gallery+ImageSwitcher+ViewFlipper实现手机查看壁纸效果.zip

    在壁纸应用中,ViewFlipper可能用于在不同的ImageSwitcher实例间切换,从而实现多页壁纸预览的效果。 实现步骤: 1. **设置布局**:首先在XML布局文件中添加Gallery和ImageSwitcher。Gallery作为主视图,用于显示...

    Android入门第十三篇之Gallery + ImageSwitcher.docx

    在Android开发中,`Gallery`控件和`ImageSwitcher`是两个非常有用的组件,尤其在创建图片轮播或相册应用时。本篇文章将详细解释如何将它们结合起来使用,以实现一个简单的图片浏览功能。 `Gallery`是Android提供的...

    sample of imageSwitcher for android

    【Android中的ImageSwitcher组件详解】 在Android应用开发中,我们常常需要实现图片的动态切换效果,例如在轮播图、广告栏等场景。ImageSwitcher就是为了解决这一需求而设计的一个视图组件,它提供了平滑过渡的动画...

    简单的ImageSwitcher实例

    在这个简单的`ImageSwitcher`实例中,我们将深入探讨如何在Android应用程序中有效地使用它。 首先,我们需要了解ImageSwitcher的基本概念。ImageSwitcher继承自ViewSwitcher,它本身是一个可以显示两个视图并能在这...

    android 用户向导ImageSwitcher实现

    在Android开发中,ImageSwitcher是一个非常有用的组件,它用于在两个ImageView之间切换显示图片,通常用于实现动画效果,比如在用户向导或幻灯片展示中。本教程将详细介绍如何在Android应用中使用ImageSwitcher来...

    ImageSwitcher

    "ImageSwitcher"是Android开发中的一个组件,主要用于在多个图像之间进行切换,常用于实现类似轮播图或图片预览的功能。这个组件是Android SDK的一部分,属于View类的子类,提供了便捷的方式来展示和切换一系列的...

    自定义ImageSwitcher实现更新图片切换效果

    <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:duration="500" android:fromAlpha="0.0" android:toAlpha="1.0" /> <!-- fade_out.xml --> <alpha xmlns:android=...

    基于ImageSwitcher实现图片左右切换

    在代码中,我们可以通过找到这个ID来实例化`ImageSwitcher`。例如: ```xml <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app=...

    Gallery and Imageswitcher

    在Android开发中,`Gallery`和`ImageSwitcher`是两个关键的UI组件,它们主要用于展示和交互图像。本文将深入探讨这两个组件的功能、用法以及如何在实际应用中实现图片的浏览效果。 首先,`Gallery`组件是Android...

Global site tag (gtag.js) - Google Analytics