赵雅智_android_frame动画
在開始实例解说之前,先引用官方文档中的一段话:
Frame动画是一系列图片依照一定的顺序展示的过程,和放电影的机制非常相似。我们称为逐帧动画。Frame动画能够被定义在XML文件里,也能够全然编码实现。
假设被定义在XML文件里,我们能够放置在/res下的anim或drawable文件夹中(/res/[anim | drawable]/filename.xml),文件名称能够作为资源ID在代码中引用;假设由全然由编码实现,我们须要使用到AnimationDrawable对象。
假设是将动画定义在XML文件里的话,语法例如以下:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot=["true" | "false"] >
<item
android:drawable="@[package:]drawable/drawable_resource_name"
android:duration="integer" />
</animation-list>
- 配置图片资源文件
- 在activity中实现frame动画
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvemhhb3lhemhpMjEyOQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="">
把图片放到res/drawable文件夹下
在res/anim文件夹下创建一个XML配置文件
<?xml version="1.0" encoding="utf-8"?> <!--
根标签为animation-list
当中oneshot代表着是否仅仅展示一遍。设置为false会不停的循环播放动画
根标签下,通过item标签对动画中的每个图片进行声明
android:duration 表示展示所用的该图片的时间长度
-->
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false">
<item android:drawable="@drawable/a1" android:duration="1000"></item>
<item android:drawable="@drawable/a2" android:duration="1000"></item>
<item android:drawable="@drawable/a3" android:duration="1000"></item>
<item android:drawable="@drawable/a4" android:duration="1000"></item>
<item android:drawable="@drawable/a5" android:duration="1000"></item>
<item android:drawable="@drawable/a6" android:duration="1000"></item>
</animation-list>
- animation-list:动画的总标签。这里面放着帧动画 <item>标签
- oneshot代表着是否仅仅展示一遍
- true 则表示动画仅仅播发一次
- false会不停的循环播放动画
- oneshot代表着是否仅仅展示一遍
- item:记录着每一帧的信息,对动画中的每个图片进行声明
- android:drawable="@drawable/a"表示这一帧用的图片为"a"。以下以此类推。
- android:duration="1000" 表示这一帧持续1000毫秒。能够依据这个值来调节动画播放的速度
在res/layout文件夹下创建layout配置文件activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" > <ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true" /> <Button
android:id="@+id/btn_begin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_marginTop="30dp"
android:layout_toRightOf="@+id/btn_codeBegin"
android:onClick="click"
android:text="開始" /> <Button
android:id="@+id/btn_stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/btn_begin"
android:layout_marginRight="15dp"
android:onClick="click"
android:text="停止" /> <RadioGroup
android:id="@+id/rg_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/btn_stop"
android:orientation="horizontal" > <RadioButton
android:id="@+id/rb_one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="单次播放" /> <RadioButton
android:id="@+id/rb_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="循环播放" />
</RadioGroup> <TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/rg_num"
android:text="拖动进度条改动透明度(0 - 255)之间" /> <SeekBar
android:id="@+id/sb_alpha"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1" /> <Button
android:id="@+id/btn_codeBegin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/btn_stop"
android:layout_marginRight="15dp"
android:layout_toRightOf="@+id/btn_stop"
android:text="代码_启动"
android:onClick="click" /> </RelativeLayout>
Activity代码
package com.example.lession13_frame; import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import android.widget.Toast; public class SplashActivity extends Activity { private ImageView imageView;
private AnimationDrawable animationDrawable;
private RadioGroup rgNum;
private SeekBar sbalpha; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 帧动画
imageView = (ImageView) findViewById(R.id.imageView1);
rgNum = (RadioGroup) this.findViewById(R.id.rg_num);
sbalpha = (SeekBar) this.findViewById(R.id.sb_alpha); // 第一种方式实现的动画
/*
* animationDrawable = (AnimationDrawable)
* getResources().getDrawable(R.anim.framebyframe);
* imageView.setBackgroundDrawable(animationDrawable);
*/ // 另外一种方式实现的动画
// 设置背景资源
imageView.setBackgroundResource(R.anim.framebyframe);
animationDrawable = (AnimationDrawable) imageView.getBackground(); // animationDrawable.setOneShot(false);是否循环播放
// animationDrawable.stop();停止播放
// animationDrawable.isRunning();//是否播放
// animationDrawable.getNumberOfFrames();//播放帧
// animationDrawable.getFrame(index); 返回制定索引的 Drawable对象
// animationDrawable.getDuration(i);停留的时间 rgNum.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// TODO Auto-generated method stub
if (checkedId == R.id.rb_one) {
// 设置单次播放
animationDrawable.setOneShot(true);
} else if (checkedId == R.id.rb_more) {
// 设置循环播放
animationDrawable.setOneShot(false);
}
// 设置播放后又一次启动
animationDrawable.stop();
animationDrawable.start();
}
});
// 监听的进度条改动透明度
sbalpha.setOnSeekBarChangeListener(new OnSeekBarChangeListener() { @Override
public void onStopTrackingTouch(SeekBar seekBar) {
} @Override
public void onStartTrackingTouch(SeekBar seekBar) {
} @Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
// TODO Auto-generated method stub
// 设置动画Alpha值
animationDrawable.setAlpha(progress);
// 通知imageView 刷新屏幕
imageView.postInvalidate();
}
});
} public void click(View v) {
int id = v.getId();
switch (id) {
case R.id.btn_begin:
animationDrawable.start();
break;
case R.id.btn_stop:
animationDrawable.stop();
break; case R.id.btn_codeBegin:
Toast.makeText(getApplicationContext(), "------------------", 0)
.show();
// 全然编码实现的动画效果
for (int i = 1; i <= 6; i++) {
// 依据资源名称和文件夹获取R.java中相应的资源ID
int picId = getResources().getIdentifier("a" + i, "drawable",
getPackageName());
// 依据资源ID获取到Drawable对象
Drawable drawable = getResources().getDrawable(picId);
// 将此帧加入到AnimationDrawable中
animationDrawable.addFrame(drawable, 300);
}
animationDrawable.setOneShot(false); // 设置为loop
imageView.setBackgroundDrawable(animationDrawable); // 将动画设置为ImageView背景
animationDrawable.start(); // 開始动画 break; default:
break;
}
}
}
AnimationDrawable 就是用来控制这个帧动画,这个类中提供了非常多方法。
- animationDrawable.start(); 開始这个动画
- animationDrawable.stop(); 结束这个动画
- animationDrawable.setAlpha(100);设置动画的透明度, 取值范围(0 - 255)
- animationDrawable.setOneShot(true); 设置单次播放
- animationDrawable.setOneShot(false); 设置循环播放
- animationDrawable.isRunning(); 推断动画是否正在播放
- animationDrawable.getNumberOfFrames(); 得到动画的帧数。
//全然编码实现的动画效果
for (int i = 1; i <= 6; i++) {
//依据资源名称和文件夹获取R.java中相应的资源ID
int picId = getResources().getIdentifier("a" + i, "drawable", getPackageName());
//依据资源ID获取到Drawable对象
Drawable drawable = getResources().getDrawable(picId);
//将此帧加入到AnimationDrawable中
animationDrawable.addFrame(drawable, 300);
}
animationDrawable.setOneShot(false); //设置为loop
imageView.setBackgroundDrawable(animationDrawable); //将动画设置为ImageView背景
animationDrawable.start(); //開始动画 break;
赵雅智_android_frame动画的更多相关文章
- 赵雅智_Android编码规范
凝视 导入mycodetemplates.xml统一凝视样式 须要加凝视的地方 类凝视(必加) 方法凝视(必加) 块凝视主要是数据结构和算法的描写叙述(必加) 类成员变量和常量凝视(选择性加入) 单行 ...
- 赵雅智_android多线程下载带进度条
progressBar说明 在某些操作的进度中的可视指示器,为用户呈现操作的进度,还它有一个次要的进度条,用来显示中间进度,如在流媒体播放的缓冲区的进度. 一个进度条也可不确定其进度.在不确定模式下, ...
- 赵雅智:android教学大纲
带下划线为详细内容链接地址.点击后可跳转.希望给大家尽一些微薄之力.眼下还在整理中 教学章节 教学内容 学时安排 备注 1 Android高速入门 2 Android模拟器与常见命令 3 Androi ...
- 赵雅智_ContentProvider
ContentProvider介绍 ContentProvider是不同应用程序之间进行交换数据的标志API 也就是说:一个应用程序通过ContentProvider暴露自己的数据操作接口,那么无论该 ...
- 赵雅智_Fragment生命周期
官网帮助文档链接: http://developer.android.com/guide/components/fragments.html 主要看两张图.和跑代码 一,Fragment的生命周 w ...
- 赵雅智:js知识点汇总
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvemhhb3lhemhpMjEyOQ==/font/5a6L5L2T/fontsize/400/fill/I0 ...
- 赵雅智_ListView_BaseAdapter
Android界面中有时候须要显示略微复杂的界面时,就须要我们自己定义一个adapter,而此adapter就要继承BaseAdapter,又一次当中的方法. Android中Adapter类事实上就 ...
- 赵雅智_BroadcastReceiver电话监听
AndroidManifest.xml 注冊广播接收者 加入权限 <?xml version="1.0" encoding="utf-8"?> &l ...
- 赵雅智_BroadcastReceiver
BroadcastReceiver 用于接收程序(包含用户开放的程序和系统内建程序)所发出的Broadcast intent 耗电量 开机启动 窃取别人短信 窃取别人电话 开发: 创建须要启动的Br ...
随机推荐
- LoadRunner 11破解方法
名称:HP Loadrunner Software 11.00 版本号:11.00.0.0 安装环境:Win 7 软件安装成功后,会弹出提示告知license的有效期为10天. 破解方法: 1.下载破 ...
- java环境配置classpath和path变量的作用及设置方法
1.path:指定cmd中命令执行文件所在的路径.比如javac.java两个可执行文件在jdk的bin目录下,如果path值含有这个bin目录,在cmd下执行这两个命令的时候就会到path指定的目录 ...
- 天气预报接口:SmartWeather API中key的计算方法
这个代码大家都蛮感兴趣,我在git开源了一个用于收集天气信息的系统,基于python语言的,请大家参考: https://github.com/BerlinSun/WeatherForecast -- ...
- hdoj--1016<dfs>
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1016 题目描述:1-n的整数排成一个环,首尾相连,相邻的两个数相加是素数,输出满足的排列,1开头输出, ...
- JStorm源代码阅读——消息的确认机制
Acker //Acker相当于一个bolt,用于处理事件 public class Acker implements IBolt { private RotatingMap<Object, A ...
- js对象的扁平化与反扁平化
Object.flatten = function(obj){ var result = {}; function recurse(src, prop) { var toString = Object ...
- oracle distinct 用法
oracle distinct 是所有字段都相同才显示一条,要做到根据某一列,则如下 select t1.* from table t1 where t1.rowid = (select min(t2 ...
- js使用笔记
js使用技巧总结 1,onclick有效是结合alter弹出框 <!DOCTYPE html> <html> <head lang="en"> ...
- 聊聊 Spring Boot 2.0 的 WebFlux
聊聊 Spring Boot 2.0 的 WebFlux## 前言 对照下 Spring Web MVC ,Spring Web MVC 是基于 Servlet API 和 Servlet 容器设计的 ...
- Java 微信公众号开发--- 接入微信
开发微信公众号在没有正式的公众平台账号时,我们可以使用测试平台账号--- 测试平台申请地址:https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandb ...