Android Animation(动画)---基础一

简介: 动画分类:传统动画(帧动画(Frame Animation)/ 补间动画(Tweened Animation))。属性动画(Attribute Animation)帧动画帧动画是将图片一张一张的连续播放,适当的速度,让人感觉是连续的动画。

动画分类:

  • 传统动画(帧动画(Frame Animation)/ 补间动画(Tweened Animation))。
  • 属性动画(Attribute Animation)
  1. 帧动画
    帧动画是将图片一张一张的连续播放,适当的速度,让人感觉是连续的动画。
    xml文件
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="true">
  <!--oneshot为true则动画只执行一遍, 为false则重复执行-->

  <item android:drawable="@color/md_red_50"
      android:duration="200"/>
  <item android:drawable="@color/md_red_100"
      android:duration="200"/>
  <item android:drawable="@color/md_red_200"
      android:duration="200"/>
  <item android:drawable="@color/md_red_300"
      android:duration="200"/>
  <item android:drawable="@color/md_red_400"
      android:duration="200"/>
  <item android:drawable="@color/md_red_500"
      android:duration="200"/>
  <item android:drawable="@color/md_red_600"
      android:duration="200"/>
  <item android:drawable="@color/md_red_700"
      android:duration="200"/>
  <item android:drawable="@color/md_red_800"
      android:duration="200"/>
  <item android:drawable="@color/md_red_900"
      android:duration="200"/>

</animation-list>

Activity内容

    private ImageView mIvFrame;
    mIvFrame = (ImageView) this.findViewById(R.id.iv_frame);
    mIvFrame.setImageResource(R.drawable.frame_list);
    AnimationDrawable animationDrawable = (AnimationDrawable) mIvFrame.getDrawable();
    animationDrawable.start();
  1. 补间动画
  • Alpha(淡入淡出)
  • Translate(位移)
  • Scale(缩放大小)
  • Rotate(旋转)

(1) Alpha(淡入淡出)

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromAlpha="0.0"
    android:toAlpha="1.0"
    android:duration="2000"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator"/>
      /**补间动画*/
    private ImageView mIvTweened;
    mIvTweened = (ImageView) this.findViewById(R.id.iv_tween);
    // 淡入淡出
    //Animation animation = AnimationUtils.loadAnimation(this, R.anim.alpha);
    mIvTweened.startAnimation(animation);

(2) Translate(位移)

<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromXDelta="0.0"
    android:toXDelta="100.0"
    android:toYDelta="100.0"
    android:fromYDelta="0.0"
    android:duration="2000"
    android:interpolator="@android:anim/accelerate_interpolator"
    />
      /**补间动画*/
    private ImageView mIvTweened;
    mIvTweened = (ImageView) this.findViewById(R.id.iv_tween);
    // 淡入淡出
    //Animation animation = AnimationUtils.loadAnimation(this, R.anim.translate);
    mIvTweened.startAnimation(animation);

(3) Scale(缩放大小)

<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromXScale="0.0"
    android:toXScale="1.0"
    android:fromYScale="0.0"
    android:toYScale="1.0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:duration="2000"
    />
      /**补间动画*/
    private ImageView mIvTweened;
    mIvTweened = (ImageView) this.findViewById(R.id.iv_tween);
    // 淡入淡出
    //Animation animation = AnimationUtils.loadAnimation(this, R.anim.scale);
    mIvTweened.startAnimation(animation);

(4) Rotate(旋转)

<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:pivotX="50%"
    android:pivotY="50%"
    android:drawable="@color/md_green_A700"
    android:fromDegrees="0.0"
    android:toDegrees="45"
    android:duration="2000"
    />
      /**补间动画*/
    private ImageView mIvTweened;
    mIvTweened = (ImageView) this.findViewById(R.id.iv_tween);
    // 淡入淡出
    //Animation animation = AnimationUtils.loadAnimation(this, R.anim.scale);
    mIvTweened.startAnimation(animation);

(5) 组合动画

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
  <alpha
      android:fromAlpha="0.0"
      android:toAlpha="1.0"
      android:duration="2000"
      android:interpolator="@android:anim/accelerate_decelerate_interpolator"/>
  <rotate
      android:pivotX="50%"
      android:pivotY="50%"
      android:drawable="@color/md_green_A700"
      android:fromDegrees="0.0"
      android:toDegrees="45"
      android:duration="2000"
      />
  <scale
      android:fromXScale="0.0"
      android:toXScale="1.0"
      android:fromYScale="0.0"
      android:toYScale="1.0"
      android:pivotX="50%"
      android:pivotY="50%"
      android:duration="2000"
      />
  <translate
      android:fromXDelta="0.0"
      android:toXDelta="100.0"
      android:toYDelta="100.0"
      android:fromYDelta="0.0"
      android:duration="2000"
      android:interpolator="@android:anim/accelerate_interpolator"
      />
</set>
      /**补间动画*/
    private ImageView mIvTweened;
    mIvTweened = (ImageView) this.findViewById(R.id.iv_tween);
    // 淡入淡出
    //Animation animation = AnimationUtils.loadAnimation(this, R.anim.set);
    mIvTweened.startAnimation(animation);

(6) 属性解释

  • android:interpolator主要作用是可以控制动画的变化速率。Android 系统已经为我们提供了一些Interpolator ,比如 accelerate_decelerate_interpolator,accelerate_interpolator等。
  • pivot决定了当前动画执行的参考位置。pivot 这个属性主要是在translate 和 scale 动画中,这两种动画都牵扯到view 的“物理位置“发生变化,所以需要一个参考点。而pivotX和pivotY就共同决定了这个点;它的值可以是float或者是百分比数值。
pivotX取值 含义
10 距离动画所在view自身左边缘10像素
10% 距离动画所在view自身左边缘 的距离是整个view宽度的10%
10%p 距离动画所在view父控件左边缘的距离是整个view宽度的10%
  1. 属性动画(Attribute Animation)
    属性动画,顾名思义它是对于对象属性的动画。因此,所有补间动画的内容,都可以通过属性动画实现。
    属性动画使用方法:
  /**
   * 属性动画
   */
  private void attrAnimation() {
    // 淡入淡出
    //ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(mIvAttr, "alpha", 0.0f, 0.5f, 0.8f, 1.0f);
    //objectAnimator.setDuration(2000);
    //objectAnimator.start();
    // 位移
    /*ObjectAnimator objectAnimatorX = ObjectAnimator.ofFloat(mIvAttr, "translationX", 100, 300);
    ObjectAnimator objectAnimatorY = ObjectAnimator.ofFloat(mIvAttr, "translationY", 100, 300);
    AnimatorSet animatorSet = new AnimatorSet();
    // 同时播放
    //animatorSet.playTogether(objectAnimatorX, objectAnimatorY);
    // 有序播放
    animatorSet.playSequentially(objectAnimatorX, objectAnimatorY);
    animatorSet.setDuration(5000);
    animatorSet.start();*/
    // 缩放
    //ObjectAnimator objectAnimatorX = ObjectAnimator.ofFloat(mIvAttr, "scaleX", 0.0f, 1.0f);
    //ObjectAnimator objectAnimatorY = ObjectAnimator.ofFloat(mIvAttr, "scaleY", 0.0f, 2.0f);
    //AnimatorSet animatorSet = new AnimatorSet();
    //animatorSet.playTogether(objectAnimatorX, objectAnimatorY);
    //animatorSet.setDuration(5000);
    //animatorSet.start();
    // 旋转
    ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(mIvAttr, "rotation", 0, 360);
    objectAnimator.setDuration(2000);
    objectAnimator.start();
  }

代码下载

目录
相关文章
|
3月前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
78 2
基于Android P,自定义Android开机动画的方法
|
26天前
|
Android开发 UED
Android 中加载 Gif 动画
【10月更文挑战第20天】加载 Gif 动画是 Android 开发中的一项重要技能。通过使用第三方库或自定义实现,可以方便地在应用中展示生动的 Gif 动画。在实际应用中,需要根据具体情况进行合理选择和优化,以确保用户体验和性能的平衡。可以通过不断的实践和探索,进一步掌握在 Android 中加载 Gif 动画的技巧和方法,为开发高质量的 Android 应用提供支持。
|
6月前
|
Java Android开发 开发者
Android10 修改开发者选项中动画缩放默认值
Android10 修改开发者选项中动画缩放默认值
194 0
|
6月前
|
XML Java Android开发
android的三种动画
android的三种动画
38 0
|
4月前
|
XML Android开发 数据格式
Android 中如何设置activity的启动动画,让它像dialog一样从底部往上出来
在 Android 中实现 Activity 的对话框式过渡动画:从底部滑入与从顶部滑出。需定义两个 XML 动画文件 `activity_slide_in.xml` 和 `activity_slide_out.xml`,分别控制 Activity 的进入与退出动画。使用 `overridePendingTransition` 方法在启动 (`startActivity`) 或结束 (`finish`) Activity 时应用这些动画。为了使前 Activity 保持静止,可定义 `no_animation.xml` 并在启动新 Activity 时仅设置新 Activity 的进入动画。
108 12
|
4月前
|
XML Android开发 UED
Android动画之共享元素动画简单实践
本文介绍Android共享元素动画, 实现两Activity间平滑过渡特定UI元素。通过设置`transitionName`属性和使用`ActivityOptions.makeSceneTransitionAnimation`启动目标Activity实现动画效果。可自定义过渡动画提升体验。
66 0
|
5月前
|
Android开发 UED
Android Item平移动画
【6月更文挑战第18天】
109 8
|
4月前
|
Android开发
android 动画 插值器和估值器
android 动画 插值器和估值器
|
4月前
|
Android开发 容器
android animation clipToPadding clipChildren
android animation clipToPadding clipChildren