package com.example.android.apis.app; // Need the following import to get access to the app resources, since this // class is in a sub-package. 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; /** * <p>Example of explicitly starting and stopping the {@link LocalService}. * This demonstrates the implementation of a service that runs in the same * process as the rest of the application, which is explicitly started and stopped * as desired.</p> */ public class Animation extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_animation); // Watch for button clicks. 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); } }; } 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:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <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.xeedroid; 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. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); findViewById(R.id.button01).setOnClickListener(new OnClickListener() { @Override public 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" />

这里不一一列举,不想看API的可以看看着篇文章

http://blog.csdn.net/GEOLO/archive/2010/04/18/5500172.aspx

(2) 主要Activity 文件,com/example/android/apis/app/Animation.java。通过overridePendingTransition方法将自定义动画覆盖Activity之间跳转时默认的动画,
Java代码

桢动画比较简单,可以看这篇文章:

http://www.cnblogs.com/feisky/archive/2010/01/11/1644482.html

例子DEMO这里下载:

http://www.cnblogs.com/TerryBlog/archive/2010/09/06/1819641.html

更多相关文章

  1. android之动画通过AnimationDrawable控制逐帧动画
  2. android:编写一个补间动画(旋转,淡出淡入,缩放,移动)
  3. 【Android】【绘图】绘制波浪线动画
  4. 修改AVD的存放位置
  5. AndroidのTween动画实现
  6. Android 补间动画(动画列表,平移,旋转,缩放,渐变,动画集合)
  7. android使用属性动画代替补间动画
  8. Android 播放Gif 动画

随机推荐

  1. android:background="@drawable/"图片拉
  2. Android中实现跑马灯效果
  3. Android(安卓)Jni中使用线程及回调更新UI
  4. android adb介绍
  5. Android内存和外存的学习
  6. Android设置屏幕亮度的两种方式
  7. 应用组件-应用程序介绍
  8. android, iOS app reverse enginnering
  9. Android(安卓)反编译apk 到java源码的方
  10. Android(安卓)的上下文菜单: Context Menu