Android AnimationDrawable资源 set[translate,alpha,scale,rotate]

2024-09-07 05:18

本文主要是介绍Android AnimationDrawable资源 set[translate,alpha,scale,rotate],希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文内容摘自《疯狂Android讲义 第三版-李刚著作》


xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"android:duration="1000"android:fillAfter="true"android:fillBefore="true"android:repeatMode="reverse"android:shareInterpolator="true"android:startOffset="50"><alphaandroid:fromAlpha="125"android:toAlpha="100"/><scaleandroid:fromXScale="1.0"android:toXScale="1.4"android:fromYScale="1.0"android:toYScale="1.4"android:pivotX="50%"android:pivotY="50%"/><translateandroid:fromXDelta="10"android:toXDelta="130"android:fromYDelta="30"android:toYDelta="-80"android:duration="2000"/></set>


package shortcut.song.com.myapplication;import android.graphics.drawable.ClipDrawable;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;import java.util.Timer;
import java.util.TimerTask;public class ResourceActivity extends AppCompatActivity {ImageView imageView;Animation mAnimation; @Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_resource);imageView = (ImageView)findViewById(R.id.image_clip);final ClipDrawable clipDrawable = (ClipDrawable)imageView.getDrawable();mAnimation = AnimationUtils.loadAnimation(this, R.anim.anim_1);final Handler mHandler = new Handler(){@Overridepublic void handleMessage(Message msg) {super.handleMessage(msg);if (msg.what == 0x1234){clipDrawable.setLevel(clipDrawable.getLevel() + 180);}}};final Timer mTimer = new Timer();mTimer.schedule(new TimerTask() {@Overridepublic void run() {Message msg = new Message();msg.what = 0x1234;mHandler.sendMessage(msg);if (clipDrawable.getLevel() > 10000){mTimer.cancel();}}}, 0, 320);}public void startAnim(View v){imageView.startAnimation(mAnimation);}
}



下面的内容是摘自网友的,感谢原创的幸苦付出!!!

Android 平台提供了两类动画。 一类是Tween动画,就是对场景里的对象不断的进行图像变化来产生动画效果(旋转、平移、放缩和渐变)。

下面就讲一下Tweene Animations

主要类:

Animation  动画

AlphaAnimation 渐变透明度

RotateAnimation 画面旋转

ScaleAnimation 渐变尺寸缩放

TranslateAnimation 位置移动

AnimationSet 动画集

 

.AlphaAnimation

其中AlphaAnimation类第一个参数fromAlpha表示动画起始时的透明度, 第二个参数toAlpha表示动画结束时的透明度。

setDuration用来设置动画持续时间。

 

.RotateAnimation

其中RotateAnimation类第一个参数fromDegrees表示动画起始时的角度, 第二个参数toDegrees表示动画结束时的角度。

另外还可以设置伸缩模式pivotXTypepivotYType, 伸缩动画相对于x,y坐标的开始位置pivotXValuepivotYValue等。

 

.ScaleAnimation

ScaleAnimation类中

第一个参数fromX ,第二个参数toX:分别是动画起始、结束时X坐标上的伸缩尺寸。

第三个参数fromY ,第四个参数toY:分别是动画起始、结束时Y坐标上的伸缩尺寸。

另外还可以设置伸缩模式pivotXTypepivotYType, 伸缩动画相对于x,y坐标的开始位置pivotXValuepivotYValue等。

 

.TranslateAnimation

第一个参数fromXDelta ,第二个参数toXDelta:分别是动画起始、结束时X坐标。

第三个参数fromYDelta,第四个参数toYDelta:分别是动画起始、结束时Y坐标。



54./* 
55.     * 1.创建一个AnimationSet对象,该对象存储的是动画的集合 
56.     * 2.根据需要创建相应的Animation对象 
57.     * 3.根据动画的需求,为Animation对象设置相应的数据(即执行效果) 
58.     * 4.奖Animation对象添加到AnimationSet对象当中 
59.     * 5.使用控件对象开始执行AnimationSet 
60.     */  
61.    public void Alpha() {  
62.        AnimationSet animationSet=new AnimationSet(true);  
63.        AlphaAnimation alphaAnimation=new AlphaAnimation(1, 0);  
64.        alphaAnimation.setDuration(2000);  
65.        animationSet.addAnimation(alphaAnimation);  
66.        imageView.startAnimation(animationSet);  
67.    }  
68.    public void Rotata(){  
69.        AnimationSet animationSet=new AnimationSet(true);  
70.        //后面的四个参数定义的是旋转的圆心位置  
71.        RotateAnimation rotateAnimation=new RotateAnimation(  
72.                0, 360,   
73.                Animation.RELATIVE_TO_PARENT, 1f,  
74.                Animation.RELATIVE_TO_PARENT, 0f);  
75.        rotateAnimation.setDuration(2000);  
76.        animationSet.addAnimation(rotateAnimation);  
77.        imageView.startAnimation(animationSet);  
78.    }  
79.    public void Scale() {  
80.        AnimationSet animationSet=new AnimationSet(true);  
81.        ScaleAnimation scaleAnimation=new ScaleAnimation(  
82.                1, 0.1f, 1, 0.1f,   
83.                Animation.RELATIVE_TO_SELF, 0.5f,   
84.                Animation.RELATIVE_TO_SELF, 0.5f);  
85.        scaleAnimation.setDuration(2000);  
86.        animationSet.addAnimation(scaleAnimation);  
87.        imageView.startAnimation(scaleAnimation);  
88.    }  
89.    public void Translate() {  
90.        AnimationSet animationSet=new AnimationSet(true);  
91.        TranslateAnimation translateAnimation=new TranslateAnimation(  
92.                Animation.RELATIVE_TO_SELF, 0f,  //X轴的开始位置  
93.                Animation.RELATIVE_TO_SELF, 0.5f,  //X轴的结束位置  
94.                Animation.RELATIVE_TO_SELF, 0f,  //Y轴的开始位置  
95.                Animation.RELATIVE_TO_SELF, 1.0f);  //Y轴的结束位置  
96.        translateAnimation.setDuration(2000);  
97.        animationSet.addAnimation(translateAnimation);  
98.          
99.        /* 
100.         * 第一行的设置如果为true,则动画执行完之后效果定格在执行完之后的状态 
101.         * 第二行的设置如果为false,则动画执行完之后效果定格在执行完之后的状态 
102.         * 第三行设置的是一个long类型的值,是指动画延迟多少毫秒之后执行 
103.         * 第四行定义的是动画重复几次执行 
104.         */  
105.        animationSet.setFillAfter(true);  
106.        animationSet.setFillBefore(false);  
107.        animationSet.setStartOffset(2000);  
108.        animationSet.setRepeatCount(3);  
109.          
110.        imageView.startAnimation(animationSet);  
111.    }  
112.    public void Alpha_Translate() {  
113.        AnimationSet animationSet=new AnimationSet(true);  
114.        AlphaAnimation alphaAnimation=new AlphaAnimation(1, 0);  
115.        alphaAnimation.setDuration(2000);  
116.        animationSet.addAnimation(alphaAnimation);  
117.        TranslateAnimation translateAnimation=new TranslateAnimation(  
118.                Animation.RELATIVE_TO_SELF, 0f,  //X轴的开始位置  
119.                Animation.RELATIVE_TO_SELF, 0.5f,  //X轴的结束位置  
120.                Animation.RELATIVE_TO_SELF, 0f,  //Y轴的开始位置  
121.                Animation.RELATIVE_TO_SELF, 1.0f);  //Y轴的结束位置  
122.        translateAnimation.setDuration(2000);  
123.        animationSet.addAnimation(translateAnimation);  
124.        imageView.startAnimation(animationSet);  
125.    }  
126.  



这篇关于Android AnimationDrawable资源 set[translate,alpha,scale,rotate]的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

poj 3050 dfs + set的妙用

题意: 给一个5x5的矩阵,求由多少个由连续6个元素组成的不一样的字符的个数。 解析: dfs + set去重搞定。 代码: #include <iostream>#include <cstdio>#include <set>#include <cstdlib>#include <algorithm>#include <cstring>#include <cm

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

android应用中res目录说明

Android应用的res目录是一个特殊的项目,该项目里存放了Android应用所用的全部资源,包括图片、字符串、颜色、尺寸、样式等,类似于web开发中的public目录,js、css、image、style。。。。 Android按照约定,将不同的资源放在不同的文件夹中,这样可以方便的让AAPT(即Android Asset Packaging Tool , 在SDK的build-tools目

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

Collection List Set Map的区别和联系

Collection List Set Map的区别和联系 这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。 有序否 允许元素重复否 Collection 否 是 List 是 是 Set AbstractSet 否

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR