Android 2.2 API demos --- animation

2024-03-25 02:18
文章标签 android api 2.2 animation demos

本文主要是介绍Android 2.2 API demos --- animation,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Android主要提供了两种创建动画机制:补间动画(tweened animation)和逐帧动画(frame-by-frame animation)。

补间动画主要完成一些简单的转场,例如位置、大小变化;

逐帧动画主要是依次加载一系列的可绘制资源。

一、补间动画

1. Tweened Animation可以运用在view,surface或者其它对象上,主要分四类:

Alpha         透明度渐变动画
Scale         尺寸渐变动画
Translate         位置移动动画
Rotate         画面旋转动画

动画属性介绍:

Alpha         
fromAlpha         动画起始时透明度,0.0表示完全透明
toAlpha         动画结束时透明度,1.0表示完全不透明
Scale         
fromXScale         动画起始时X坐标上的伸缩尺寸
toXScale         动画结束时X坐标上的伸缩尺寸
fromYScale         动画起始时Y坐标上的伸缩尺寸
toYScale         动画结束时Y坐标上的伸缩尺寸
pivotX         动画相对于物件的X坐标的开始位置
pivotY         动画相对于物件的Y坐标的开始位置
Translate         
fromXDelta         动画起始时X坐标上的位置
toXDelta         动画结束时X坐标上的位置
fromYDelta         动画起始时Y坐标上的位置
toYDelta         动画结束时Y坐标上的位置
Rotate         
fromDegrees         动画起始时物件的角度
toDegrees         动画结束时物件旋转的角度,可以大于360度
pivotX         动画相对于物件的X坐标的开始位置
pivotY         动画相对于物件的Y坐标的开始位置

2. 使用Animation的方式有两种,一种是在XML中定义动画,另一种是在Java代码中定义动画。

一)在XML中定义动画

示例一:将动画应用在View上

(1) 创建animation,新建res\anim\alpha.xml。

Xml代码

<?xml version="1.0" encoding="utf-8"?><alpha xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromAlpha="1" android:toAlpha="0" android:duration="@android:integer/config_longAnimTime"/>



 

 

(2) 创建layout,新建res\layout\main.xml。

Xml代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><TextView  android:id="@+id/text01"android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /><Button android:id="@+id/button01"android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/alpha" /></LinearLayout>


 

(3) 创建Activity,AnimationActivity.java。通过AnimationUtils.loadAnimation加载动画,然后aView.startAnimation来运行动画。

Java代码

 

package com.example.android.apis.app;import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.view.animation.AnimationUtils;public class AnimationActivity extends Activity {/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);findViewById(R.id.button01).setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {findViewById(R.id.text01).startAnimation(AnimationUtils.loadAnimation(AnimationActivity.this,R.anim.alpha));}});}
}


 

 

(4) 运行应用,点击Alpha按钮,文本信息会出现渐变效果。

示例二:将动画应用在Activity上

Android官方示例,com.example.android.apis.app.Animation。在此只列出关键部分。

(1) animation xml文件。

res/anim/fade.xml
Xml代码
<?xml version="1.0" encoding="utf-8"?><alpha xmlns:android="http://schemas.android.com/apk/res/android"android:interpolator="@android:anim/accelerate_interpolator"android:fromAlpha="0.0" android:toAlpha="1.0"android:duration="@android:integer/config_longAnimTime" />


 

 

res/anim/hold.xml
Xml代码
<?xml version="1.0" encoding="utf-8"?><translate xmlns:android="http://schemas.android.com/apk/res/android"android:interpolator="@android:anim/accelerate_interpolator"android:fromXDelta="0" android:toXDelta="0"android:duration="@android:integer/config_longAnimTime" />


 

res/anim/zoom_enter.xml
Xml代码
<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"android:interpolator="@android:anim/decelerate_interpolator"><scale android:fromXScale="2.0" android:toXScale="1.0"android:fromYScale="2.0" android:toYScale="1.0"android:pivotX="50%p" android:pivotY="50%p"android:duration="@android:integer/config_mediumAnimTime" />
</set>


<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"android:interpolator="@android:anim/decelerate_interpolator"><scale android:fromXScale="2.0" android:toXScale="1.0"android:fromYScale="2.0" android:toYScale="1.0"android:pivotX="50%p" android:pivotY="50%p"android:duration="@android:integer/config_mediumAnimTime" />
</set>

res/anim/zoom_exit.xml
Xml代码
<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"android:interpolator="@android:anim/decelerate_interpolator"android:zAdjustment="top"><scale android:fromXScale="1.0" android:toXScale=".5"android:fromYScale="1.0" android:toYScale=".5"android:pivotX="50%p" android:pivotY="50%p"android:duration="@android:integer/config_mediumAnimTime" /><alpha android:fromAlpha="1.0" android:toAlpha="0"android:duration="@android:integer/config_mediumAnimTime"/>
</set>


 

(2) 主要Activity 文件,com/example/android/apis/app/Animation.java。通过overridePendingTransition方法将自定义动画覆盖Activity之间跳转时默认的动画,
Java代码
package com.example.android.apis.app;import com.example.android.apis.R;
import com.example.android.apis.view.Controls1;import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;public class Animation extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_animation);Button button = (Button)findViewById(R.id.fade_animation);button.setOnClickListener(mFadeListener);button = (Button)findViewById(R.id.zoom_animation);button.setOnClickListener(mZoomListener);}private OnClickListener mFadeListener = new OnClickListener() {public void onClick(View v) {startActivity(new Intent(Animation.this, Controls1.class));overridePendingTransition(R.anim.fade, R.anim.hold);}};private OnClickListener mZoomListener = new OnClickListener() {public void onClick(View v) {startActivity(new Intent(Animation.this, Controls1.class));overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);}};
}


 

   

二)在Java代码中定义动画

示例一:

(1) layout文件同上文的res\layout\main.xml。

(2) 修改AnimationActivity.java代码。在代码里创建animation并设置属性。
Java代码

com.example.android.apis.app;import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.animation.Animation;
import android.view.animation.RotateAnimation;public class AnimationActivity extends Activity {/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);findViewById(R.id.button01).setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {// 创建rotate animationAnimation anim = new RotateAnimation(0, 360);anim.setDuration(5000);anim.setInterpolator(new AccelerateDecelerateInterpolator());findViewById(R.id.text01).startAnimation(anim);}});}
}


 

二、逐帧动画

这篇关于Android 2.2 API demos --- animation的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/843544

相关文章

PHP应用中处理限流和API节流的最佳实践

《PHP应用中处理限流和API节流的最佳实践》限流和API节流对于确保Web应用程序的可靠性、安全性和可扩展性至关重要,本文将详细介绍PHP应用中处理限流和API节流的最佳实践,下面就来和小编一起学习... 目录限流的重要性在 php 中实施限流的最佳实践使用集中式存储进行状态管理(如 Redis)采用滑动

Android协程高级用法大全

《Android协程高级用法大全》这篇文章给大家介绍Android协程高级用法大全,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友跟随小编一起学习吧... 目录1️⃣ 协程作用域(CoroutineScope)与生命周期绑定Activity/Fragment 中手

Go语言使用net/http构建一个RESTful API的示例代码

《Go语言使用net/http构建一个RESTfulAPI的示例代码》Go的标准库net/http提供了构建Web服务所需的强大功能,虽然众多第三方框架(如Gin、Echo)已经封装了很多功能,但... 目录引言一、什么是 RESTful API?二、实战目标:用户信息管理 API三、代码实现1. 用户数据

Python用Flask封装API及调用详解

《Python用Flask封装API及调用详解》本文介绍Flask的优势(轻量、灵活、易扩展),对比GET/POST表单/JSON请求方式,涵盖错误处理、开发建议及生产环境部署注意事项... 目录一、Flask的优势一、基础设置二、GET请求方式服务端代码客户端调用三、POST表单方式服务端代码客户端调用四

Android 缓存日志Logcat导出与分析最佳实践

《Android缓存日志Logcat导出与分析最佳实践》本文全面介绍AndroidLogcat缓存日志的导出与分析方法,涵盖按进程、缓冲区类型及日志级别过滤,自动化工具使用,常见问题解决方案和最佳实... 目录android 缓存日志(Logcat)导出与分析全攻略为什么要导出缓存日志?按需过滤导出1. 按

SpringBoot结合Knife4j进行API分组授权管理配置详解

《SpringBoot结合Knife4j进行API分组授权管理配置详解》在现代的微服务架构中,API文档和授权管理是不可或缺的一部分,本文将介绍如何在SpringBoot应用中集成Knife4j,并进... 目录环境准备配置 Swagger配置 Swagger OpenAPI自定义 Swagger UI 底

使用Python的requests库调用API接口的详细步骤

《使用Python的requests库调用API接口的详细步骤》使用Python的requests库调用API接口是开发中最常用的方式之一,它简化了HTTP请求的处理流程,以下是详细步骤和实战示例,涵... 目录一、准备工作:安装 requests 库二、基本调用流程(以 RESTful API 为例)1.

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

SpringBoot监控API请求耗时的6中解决解决方案

《SpringBoot监控API请求耗时的6中解决解决方案》本文介绍SpringBoot中记录API请求耗时的6种方案,包括手动埋点、AOP切面、拦截器、Filter、事件监听、Micrometer+... 目录1. 简介2.实战案例2.1 手动记录2.2 自定义AOP记录2.3 拦截器技术2.4 使用Fi

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期