热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

android动画案例,淡入淡出效果

转载请注明出处:http:blog.csdn.netdroyonarticledetails8689249源代码下载1、android动画测试程序,

转载请注明出处:http://blog.csdn.net/droyon/article/details/8689249

源代码下载

1、android动画测试程序,界面如图:

颜色随机变化,点击视图,左淡出,右淡入,下淡出,上淡入效果。


主要源代码解析:

package com.example.objectanimatortest;import java.util.Random;import android.os.Build;
import android.os.Bundle;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ArgbEvaluator;
import android.animation.IntEvaluator;
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.annotation.TargetApi;
import android.app.Activity;
import android.graphics.Color;
import android.view.Menu;
import android.view.TextureView;
import android.view.View;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.DecelerateInterpolator;
import android.widget.TextView;@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class MainActivity extends Activity implements View.OnClickListener{private TextView[] tv;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.objectanimatortest);tv = new TextView[]{(TextView) findViewById(R.id.tv01),(TextView) findViewById(R.id.tv02),(TextView) findViewById(R.id.tv03),(TextView) findViewById(R.id.tv04),(TextView) findViewById(R.id.tv11),(TextView) findViewById(R.id.tv12),(TextView) findViewById(R.id.tv13),(TextView) findViewById(R.id.tv14)};initTextViews();}private void initTextViews(){for(TextView textView :tv){//颜色随机变化代码 使用ValueAnimator类给每个视图加上北京颜色随时间变化的动画int color1 = Color.rgb((new Random()).nextInt(255), (new Random()).nextInt(255), (new Random()).nextInt(255)) ;int color2 = Color.rgb((new Random()).nextInt(255), (new Random()).nextInt(255), (new Random()).nextInt(255)) ;ValueAnimator animator = ObjectAnimator.ofInt(textView, "backgroundColor", color1,color2);animator.setDuration(3000);animator.setEvaluator(new ArgbEvaluator());//设置数值计算器,保证动画变化过程中的数值正确animator.setRepeatCount(ValueAnimator.INFINITE);animator.setRepeatMode(ValueAnimator.REVERSE);animator.start();textView.setOnClickListener(this);}}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {//getMenuInflater().inflate(R.menu.activity_main, menu);return true;}@Overridepublic void onClick(final View view) {final ValueAnimator animator1 = ObjectAnimator.ofFloat(view, "alpha",1,0);//淡出效果animator1.setDuration(1000);animator1.setInterpolator(new AccelerateInterpolator());ValueAnimator animator2 = ObjectAnimator.ofFloat(view,"x",view.getX(),(view.getX()-view.getWidth()));//向左移动效果animator2.setDuration(1000);animator2.setInterpolator(new DecelerateInterpolator());AnimatorSet animatorSet = new AnimatorSet();//合起来就是左淡出效果animatorSet.play(animator2).before(animator1);
// animatorSet.start();final ValueAnimator animator3 = ObjectAnimator.ofFloat(view, "alpha",0,1);//淡入效果animator3.setDuration(1000);animator3.setInterpolator(new AccelerateInterpolator());ValueAnimator animator4 = ObjectAnimator.ofFloat(view,"x",view.getX()+2*view.getWidth(),view.getX());//从右边向左移动animator4.setDuration(1000);animator4.setInterpolator(new DecelerateInterpolator());animator4.addListener(new AnimatorListenerAdapter() {//当动画播放完,我们做什么@Overridepublic void onAnimationEnd(Animator animation) {//向下移动淡出,然后向上移动淡入super.onAnimationEnd(animation);final ValueAnimator animatorY = ObjectAnimator.ofFloat(view, "y", view.getY(),view.getY()+view.getHeight());animatorY.setDuration(1000);final ValueAnimator alphaY = animator1.clone();ValueAnimator rotate = ObjectAnimator.ofFloat(view,"rotationY",0,90);rotate.setDuration(2000);
// rotate.start();animatorY.addListener(new AnimatorListenerAdapter() {@Overridepublic void onAnimationEnd(Animator animation) {super.onAnimationEnd(animation);animatorY.reverse();animator3.clone().start();}});AnimatorSet set = new AnimatorSet();set.play(animatorY).with(alphaY);set.start();}});// animatorSet.play(animator3).after(animator1);//合起来就是左淡出,右淡入效果
// animatorSet.play(animator3).with(animator4);
// animatorSet.start();AnimatorSet animatorSet1 = new AnimatorSet();animatorSet1.play(animator3).with(animator4);AnimatorSet animatorSet2 = new AnimatorSet();animatorSet2.play(animator2).with(animator1);AnimatorSet set = new AnimatorSet();set.playSequentially(animatorSet2,animatorSet1);//使用playSequentially方法测试效果set.start();}}
在源代码中还有测试类,修改一下mainifest.xml文件,让另外的那个类运行便可以看到效果。







推荐阅读
  • ListView简单使用
    先上效果:主要实现了Listview的绑定和点击事件。项目资源结构如下:先创建一个动物类,用来装载数据:Animal类如下:packagecom.example.simplelis ... [详细]
  • 深入解析 Android IPC 中的 Messenger 机制
    本文详细介绍了 Android 中基于消息传递的进程间通信(IPC)机制——Messenger。通过实例和源码分析,帮助开发者更好地理解和使用这一高效的通信工具。 ... [详细]
  • 在尝试使用C# Windows Forms客户端通过SignalR连接到ASP.NET服务器时,遇到了内部服务器错误(500)。本文将详细探讨问题的原因及解决方案。 ... [详细]
  • Django Token 认证详解与 HTTP 401、403 状态码的区别
    本文详细介绍了如何在 Django 中配置和使用 Token 认证,并解释了 HTTP 401 和 HTTP 403 状态码的区别。通过具体的代码示例,帮助开发者理解认证机制及权限控制。 ... [详细]
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 本文回顾了2017年的转型和2018年的收获,分享了几家知名互联网公司提供的工作机会及面试体验。 ... [详细]
  • 深入解析ArrayList与LinkedList的差异
    本文详细对比了Java中ArrayList和LinkedList两种常用集合类的特性、性能及适用场景,通过代码示例进行测试,并结合实际应用场景分析其优缺点。 ... [详细]
  • 本文将详细探讨 Java 中提供的不可变集合(如 `Collections.unmodifiableXXX`)和同步集合(如 `Collections.synchronizedXXX`)的实现原理及使用方法,帮助开发者更好地理解和应用这些工具。 ... [详细]
  • 深入解析动态代理模式:23种设计模式之三
    在设计模式中,动态代理模式是应用最为广泛的一种代理模式。它允许我们在运行时动态创建代理对象,并在调用方法时进行增强处理。本文将详细介绍动态代理的实现机制及其应用场景。 ... [详细]
  • Python + Pytest 接口自动化测试中 Token 关联登录的实现方法
    本文将深入探讨 Python 和 Pytest 在接口自动化测试中如何实现 Token 关联登录,内容详尽、逻辑清晰,旨在帮助读者掌握这一关键技能。 ... [详细]
  • 本文深入探讨了 Java 中 LocalTime 类的 isSupported() 方法,包括其功能、语法和使用示例。通过具体的代码片段,帮助读者理解如何检查特定的时间字段或单位是否被 LocalTime 类支持。 ... [详细]
  • 本文详细介绍了如何在Android 4.4及以上版本中配置WebView以实现内容的自动高度调整和屏幕适配,确保中文显示正常,并提供代码示例。 ... [详细]
  • 本文探讨了在 SQL Server 中使用 JDBC 插入数据时遇到的问题。通过详细分析代码和数据库配置,提供了解决方案并解释了潜在的原因。 ... [详细]
  • Spring Boot 中静态资源映射详解
    本文深入探讨了 Spring Boot 如何简化 Web 应用中的静态资源管理,包括默认的静态资源映射规则、WebJars 的使用以及静态首页的处理方法。通过本文,您将了解如何高效地管理和引用静态资源。 ... [详细]
  • SpringMVC RestTemplate的几种请求调用(转)
    SpringMVCRestTemplate的几种请求调用(转),Go语言社区,Golang程序员人脉社 ... [详细]
author-avatar
finaokas_261
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有