安卓开发_浅谈Android动画(二)

简介: 在学习了四个基本动画之后,现在要学习一些更有用的效果 先给出所有的动画xml 1 2 3 4 8 9 10 alpha.xml 透明动画 1 2 3 4 11 12 rotate.

在学习了四个基本动画之后,现在要学习一些更有用的效果

先给出所有的动画xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <alpha
 5         android:duration="3000"
 6         android:fromAlpha="0.1"
 7         android:toAlpha="1.0" >
 8     </alpha>
 9 
10 </set>
alpha.xml 透明动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <rotate
 5         android:duration="1000"
 6         android:fromDegrees="0"
 7         android:interpolator="@android:anim/accelerate_decelerate_interpolator"
 8         android:pivotX="50%"
 9         android:pivotY="50%"
10         android:toDegrees="+360" />
11 
12 </set>
rotate.xml旋转动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <scale
 5         android:duration="2000"
 6         android:fillAfter="false"
 7         android:fromXScale="0.0"
 8         android:fromYScale="0.0"
 9         android:interpolator="@android:anim/accelerate_decelerate_interpolator"
10         android:pivotX="50%"
11         android:pivotY="50%"
12         android:toXScale="1.0"
13         android:toYScale="1.0" />
14 
15 </set>
scale.xml缩放动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <translate
 5         android:duration="1000"
 6         android:fromXDelta="10"
 7         android:fromYDelta="10"
 8         android:toXDelta="100"
 9         android:toYDelta="100" />
10 
11 </set>
translate.xml位移动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:interpolator="@android:anim/decelerate_interpolator" >
 4   
 5   <scale
 6         android:duration="1000"
 7         android:fromXScale="0.1"
 8         android:fromYScale="0.1"
 9         android:pivotX="50%"
10         android:pivotY="50%"
11         android:toXScale="1.0"
12         android:toYScale="1.0" />
13   <alpha
14         android:duration="1000"
15         android:fromAlpha="0"
16         android:toAlpha="1.0" />
17 </set>
zoom_in.xml //activty进入动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:interpolator="@android:anim/decelerate_interpolator"
 4     android:zAdjustment="top" >
 5 
 6     <scale
 7         android:duration="@android:integer/config_mediumAnimTime"
 8         android:fromXScale="1.0"
 9         android:fromYScale="1.0"
10         android:pivotX="50%p"
11         android:pivotY="50%p"
12         android:toXScale="0.1"
13         android:toYScale="0.1" />
14 
15     <alpha
16         android:duration="@android:integer/config_mediumAnimTime"
17         android:fromAlpha="1.0"
18         android:toAlpha="0" />
19 
20 </set>
zoom_out.xml//activity退出动画
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <alpha
 5         android:duration="3000"
 6         android:fromAlpha="0.2"
 7         android:toAlpha="1.0" />
 8     <alpha
 9         android:duration="3000"
10         android:fromAlpha="1.0"
11         android:startOffset="3000"
12         android:toAlpha="0.2" />
13 
14 </set>
continue_anim.xml //连续动画

 

1、连续动画(动画监听器实现)

 1 Animation loadAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);//先旋转
 2             donghua_image.startAnimation(loadAnimation);
 3             final Animation loadAnimation_2 = AnimationUtils.loadAnimation(this, R.anim.scale);//后缩放
 4             
 5             //动画监听器
 6             loadAnimation.setAnimationListener(new AnimationListener() {
 7                 
 8                 @Override
 9                 public void onAnimationStart(Animation arg0) {
10                     // TODO Auto-generated method stub
11                     
12                 }
13                 
14                 @Override
15                 public void onAnimationRepeat(Animation arg0) {
16                     // TODO Auto-generated method stub
17                     
18                 }
19                 //结束后的操作
20                 @Override
21                 public void onAnimationEnd(Animation arg0) {
22                     // TODO Auto-generated method stub
23                     donghua_image.startAnimation(loadAnimation_2);
24                 }
25             });

效果图:

2、连续动画(配置文件实现)

1 loadAnimation = AnimationUtils.loadAnimation(this, R.anim.continue_anim);
2             donghua_image.startAnimation(loadAnimation);

对应的配置文件

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <set xmlns:android="http://schemas.android.com/apk/res/android" >
 3 
 4     <alpha    //先20%透明到100%透明,持续三秒
 5         android:duration="3000"
 6         android:fromAlpha="0.2"
 7         android:toAlpha="1.0" />
 8     <alpha     //后100%透明到20%透明,持续三秒,从3秒后开始实现,即第一个动画实现完成后再实现
 9         android:duration="3000"
10         android:fromAlpha="1.0"
11         android:startOffset="3000"
12         android:toAlpha="0.2" />
13 
14 </set>

效果图:

3、闪烁动画效果

1       //循环播放透明度动画实现闪烁效果
2             //JAVA代码实现
3             AlphaAnimation alpha = new AlphaAnimation(0.1f, 1.0f);
4             alpha.setDuration(100);//每次0.1秒内执行完动画
5             alpha.setRepeatCount(10); //执行10次动画
6             //重复方式。倒序Animation.REVERSE,正序Animation.START
7             alpha.setRepeatMode(Animation.REVERSE);
8             donghua_image.startAnimation(alpha);

效果图:

4、activity切换动画

使用overridePendingTransition方法
参数:第二个activity进入动画
第一个activity退出动画

在startActivity(intent);之后使用

效果图:

 

完整代码:

  1 package other;
  2 
  3 import com.example.allcode.ImageTest;
  4 import com.example.allcode.R;
  5 
  6 import android.app.Activity;
  7 import android.os.Bundle;
  8 import android.view.View;
  9 import android.view.View.OnClickListener;
 10 import android.view.animation.AlphaAnimation;
 11 import android.view.animation.Animation;
 12 import android.view.animation.Animation.AnimationListener;
 13 import android.view.animation.AnimationUtils;
 14 import android.widget.Button;
 15 import android.widget.ImageView;
 16 
 17 public class Donghua extends Activity implements OnClickListener{
 18     private Button toumingdu;
 19     private Button suofang;
 20     private Button weiyi;
 21     private Button xuanzhuan;
 22     private Button lianxu_1;
 23     private Button lianxu_2;
 24     private Button shanshuo;
 25 
 26     private ImageView donghua_image;
 27     private Animation loadAnimation;
 28     @Override
 29     protected void onCreate(Bundle savedInstanceState) {
 30         // TODO Auto-generated method stub
 31         super.onCreate(savedInstanceState);
 32         setContentView(R.layout.donghua);
 33         
 34         toumingdu = (Button) findViewById(R.id.donghua_touming);
 35         suofang = (Button) findViewById(R.id.donghua_suofang);
 36         weiyi= (Button) findViewById(R.id.donghua_weiyi);
 37         xuanzhuan= (Button) findViewById(R.id.donghua_xuanzhuan);
 38         lianxu_1= (Button) findViewById(R.id.donghua_lianxu_1);
 39         lianxu_2= (Button) findViewById(R.id.donghua_lianxu_2);
 40         shanshuo= (Button) findViewById(R.id.donghua_shanshuo);
 41         
 42         donghua_image = (ImageView) findViewById(R.id.donghua_image);
 43         toumingdu.setOnClickListener(this);
 44         donghua_image.setOnClickListener(this);
 45         suofang.setOnClickListener(this);
 46         weiyi.setOnClickListener(this);
 47         xuanzhuan.setOnClickListener(this);
 48         lianxu_1.setOnClickListener(this);
 49         lianxu_2.setOnClickListener(this);
 50         shanshuo.setOnClickListener(this);
 51     }
 52     @Override
 53     public void onClick(View v) {
 54         // TODO Auto-generated method stub
 55         switch (v.getId()) {
 56         case R.id.donghua_touming:
 57             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.alpha);
 58             donghua_image.startAnimation(loadAnimation);
 59             break;
 60         case R.id.donghua_suofang:
 61             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.scale);
 62             donghua_image.startAnimation(loadAnimation);
 63             break;
 64         case R.id.donghua_weiyi:
 65             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.translate);
 66             donghua_image.startAnimation(loadAnimation);
 67             break;
 68         case R.id.donghua_xuanzhuan:
 69             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);
 70             donghua_image.startAnimation(loadAnimation);
 71             break;
 72         case R.id.donghua_lianxu_1:
 73             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);
 74             donghua_image.startAnimation(loadAnimation);
 75             final Animation loadAnimation_2 = AnimationUtils.loadAnimation(this, R.anim.scale);
 76             
 77             //动画监听器
 78             loadAnimation.setAnimationListener(new AnimationListener() {
 79                 
 80                 @Override
 81                 public void onAnimationStart(Animation arg0) {
 82                     // TODO Auto-generated method stub
 83                     
 84                 }
 85                 
 86                 @Override
 87                 public void onAnimationRepeat(Animation arg0) {
 88                     // TODO Auto-generated method stub
 89                     
 90                 }
 91                 //结束后的操作
 92                 @Override
 93                 public void onAnimationEnd(Animation arg0) {
 94                     // TODO Auto-generated method stub
 95                     donghua_image.startAnimation(loadAnimation_2);
 96                 }
 97             });
 98             break;
 99         case R.id.donghua_lianxu_2:
100             loadAnimation = AnimationUtils.loadAnimation(this, R.anim.continue_anim);
101             donghua_image.startAnimation(loadAnimation);
102             break;
103         case R.id.donghua_shanshuo:
104             //循环播放透明度动画实现闪烁效果
105             //JAVA代码实现
106             AlphaAnimation alpha = new AlphaAnimation(0.1f, 1.0f);
107             alpha.setDuration(100);//每次0.1秒内执行完动画
108             alpha.setRepeatCount(10); //执行10次动画
109             //重复方式。倒序Animation.REVERSE,正序Animation.START
110             alpha.setRepeatMode(Animation.REVERSE);
111             donghua_image.startAnimation(alpha);
112             break;
113         default:
114             break;
115         }
116     }
117 
118 }
Donghua.java
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6 
 7     <Button
 8         android:id="@+id/donghua_touming"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:text="AlphaAnimation(透明度动画)" />
12 
13     <Button
14         android:id="@+id/donghua_suofang"
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content"
17         android:text="ScaleAnimation(缩放动画)" />
18 
19     <Button
20         android:id="@+id/donghua_weiyi"
21         android:layout_width="wrap_content"
22         android:layout_height="wrap_content"
23         android:text="TranslateAnimation(位移动画)" />
24 
25     <Button
26         android:id="@+id/donghua_xuanzhuan"
27         android:layout_width="wrap_content"
28         android:layout_height="wrap_content"
29         android:text="RotateAnimation(旋转动画)" />
30 
31     <Button
32         android:id="@+id/donghua_lianxu_1"
33         android:layout_width="wrap_content"
34         android:layout_height="wrap_content"
35         android:text="连续动画一(动画监听器实现)" />
36     <Button
37         android:id="@+id/donghua_lianxu_2"
38         android:layout_width="wrap_content"
39         android:layout_height="wrap_content"
40         android:text="连续动画二(配置文件实现)" />
41     <Button
42         android:id="@+id/donghua_shanshuo"
43         android:layout_width="wrap_content"
44         android:layout_height="wrap_content"
45         android:text="闪烁动画" />
46 
47     <ImageView
48         android:id="@+id/donghua_image"
49         android:layout_width="82dp"
50         android:layout_height="wrap_content"
51         android:layout_weight="0.16"
52         android:src="@drawable/icon_72" />
53 
54 </LinearLayout>
donghua.xml

 

相关文章
|
6天前
|
编解码 Java Android开发
通义灵码:在安卓开发中提升工作效率的真实应用案例
本文介绍了通义灵码在安卓开发中的应用。作为一名97年的聋人开发者,我在2024年Google Gemma竞赛中获得了冠军,拿下了很多项目竞赛奖励,通义灵码成为我的得力助手。文章详细展示了如何安装通义灵码插件,并通过多个实例说明其在适配国际语言、多种分辨率、业务逻辑开发和编程语言转换等方面的应用,显著提高了开发效率和准确性。
|
5天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
18 5
|
3天前
|
JSON Java Android开发
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
|
5天前
|
缓存 数据库 Android开发
安卓开发中的性能优化技巧
【10月更文挑战第29天】在移动应用的海洋中,性能是船只能否破浪前行的关键。本文将深入探讨安卓开发中的性能优化策略,从代码层面到系统层面,揭示如何让应用运行得更快、更流畅。我们将以实际案例和最佳实践为灯塔,引领开发者避开性能瓶颈的暗礁。
16 3
|
7天前
|
存储 IDE 开发工具
探索Android开发之旅:从新手到专家
【10月更文挑战第26天】在这篇文章中,我们将一起踏上一段激动人心的旅程,探索如何在Android平台上从零开始,最终成为一名熟练的开发者。通过简单易懂的语言和实际代码示例,本文将引导你了解Android开发的基础知识、关键概念以及如何实现一个基本的应用程序。无论你是编程新手还是希望扩展你的技术栈,这篇文章都将为你提供价值和启发。让我们开始吧!
|
2天前
|
移动开发 Java Android开发
探索Android与iOS开发的差异性与互联性
【10月更文挑战第32天】在移动开发的大潮中,Android和iOS两大平台各领风骚。本文将深入浅出地探讨这两个平台的开发差异,并通过实际代码示例,展示如何在各自平台上实现相似的功能。我们将从开发环境、编程语言、用户界面设计、性能优化等多个角度进行对比分析,旨在为开发者提供跨平台开发的实用指南。
18 0
|
12天前
|
搜索推荐 Android开发 UED
安卓开发中的自定义视图:打造个性化用户界面
【10月更文挑战第22天】在安卓应用的海洋中,如何让你的应用脱颖而出?一个独特且直观的用户界面(UI)至关重要。本文将引导你通过自定义视图来打造个性化的用户体验,从基础的视图绘制到触摸事件的处理,我们将一步步深入探讨。准备好了吗?让我们开始吧!
|
Android开发
安卓开发_浅谈Android动画(四)
Property动画 概念:属性动画,即通过改变对象属性的动画。 特点:属性动画真正改变了一个UI控件,包括其事件触发焦点的位置     一、重要的动画类及属性值: 1、  ValueAnimator 基本属性动画类   方法 描述 setDurati...
1137 0
|
30天前
|
缓存 搜索推荐 Android开发
安卓开发中的自定义控件实践
【10月更文挑战第4天】在安卓开发的海洋中,自定义控件是那片璀璨的星辰。它不仅让应用界面设计变得丰富多彩,还提升了用户体验。本文将带你探索自定义控件的核心概念、实现过程以及优化技巧,让你的应用在众多竞争者中脱颖而出。
|
30天前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
98 1