欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 中 Tweened animation的实例详解

程序员文章站 2023-12-15 15:49:46
android 中 tweened animation的实例详解 tweened animation有四种类型,下面主要介绍scale类型。 运行效果如下: an...

android 中 tweened animation的实例详解

tweened animation有四种类型,下面主要介绍scale类型。

运行效果如下:

Android 中 Tweened animation的实例详解

android sdk提供了2种方法:直接从xml资源中读取animation,使用animation子类的构造函数来初始化animation对象,第二种方法在看了android sdk中各个类的说明就知道如何使用了,下面简要说明从xml资源中读取animation。xml资源中的动画文件animation.xml内容为:

<?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android"> 
  <scale 
    android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
    android:fromxscale="0.0" 
    android:toxscale="1.4" 
    android:fromyscale="0.0" 
    android:toyscale="1.4" 
    android:pivotx="50%" 
    android:pivoty="50%" 
    android:fillafter="false" 
    android:startoffset="3000" 
    android:duration="3000" 
    android:repeatcount="4"/> 
</set> 

主文件scaleanimation.java内容为:

package com.android.animation; 
import android.app.activity; 
import android.os.bundle; 
import android.view.animation.animation; 
import android.view.animation.animationutils; 
import android.widget.imageview; 
public class testanimation extends activity { 
  /** called when the activity is first created. */ 
  @override 
  public void oncreate(bundle savedinstancestate) { 
    super.oncreate(savedinstancestate); 
    setcontentview(r.layout.main); 
    imageview imageview = (imageview) findviewbyid(r.id.imageview); 
    animation animation = animationutils.loadanimation(this, r.anim.animation); 
    imageview.startanimation(animation); 
  } 
} 

程序很容易看懂,主要为了说明伸缩动画效果而没有增加复杂性。值得说明的是,本人在测试阶段,错误的认为不需要布局文件,把行setcontentview(r.layout.main);去掉,导致程序运行一直出错。其实动画也需要首先把布局文件加载到activity里面,然后对布局里面的控件增加动画。

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:

下一篇: