位置:首页 > 手机开发 > Android开发在线教程 > Android Animation(动画)实例

Android Animation(动画)实例

动画在Android中可以有许多方式。在本章中,我们将讨论一个简单的和广泛使用的动画制作 - 所谓的补间动画方式。

补间动画

补间动画需要一些参数,如初始值,终值,大小,持续时间,旋转角度等,并对该对象执行所需的动画。它可以应用到任何类型的对象。因此,为了利用这一点,Android已经为我们提供了一个类叫做 Animation.

为了在android系统进行显示动画,我们将调用AnimationUtils 类的静态函数 loadAnimation()。我们将接受它在动画对象的实例。它的语法如下:

Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.myanimation);

注意第二个参数。它是动画 xml文件的名称。必须创建一个res目录下名为anim的文件夹,并在anim文件夹中创建XML文件。

这个动画 animation 类有下面列出许多有用的功能:

Sr.No 方法 & 描述
1 start()
此方法开始动画
2 setDuration(long duration)
此方法设置动画的持续时间
3 getDuration()
此方法获得其通过上述方法设定的持续时间
4 end()
此方法结束动画
5 cancel()
这个方法取消动画

为了应用这个动画到对象,我们将只调用对象的startAnimation()方法。其语法是:

ImageView image1 = (ImageView)findViewById(R.id.imageView1);
image.startAnimation(animation);

放大动画

为了在动画进行缩放,下创建anim文件夹中XML文件在res目录下,并把这个代码的文件中。

<set xmlns:android="http://schemas.android.com/apk/res/android">

   <scale xmlns:android="http://schemas.android.com/apk/res/android"
      android:fromXScale="0.5"
      android:toXScale="3.0"
      android:fromYScale="0.5"
      android:toYScale="3.0"
      android:duration="5000"
      android:pivotX="50%"
      android:pivotY="50%" >

   </scale>

</set>

参数 fromXScale、fromYScale 限定开始点和参数 toXScale、toYScale定义结束点。duration 定义了动画的时间和pivotX,pivotYdefines中心从其中动画将开始。

例子

参数 fromXScale、fromYScale限定开始点,参数 toXScale、toYScale 定义结束点。duration 定义了动画的时间 pivotX,pivotY 定义的中心从其中动画将开始。

为了试验这个例子,需要在模拟器或实际设备上运行。

Steps 描述
1 使用Android Studio创建Android应用程序,并将其命名为Animation ,创建这个项目时确保目标SDK编译在Android SDK的最新版本并使用更高级别的API
2 修改src/MainActivity.java文件中添加动画代码
3 修改所需的布局XML文件res/layout/activity_main.xml l添加GUI组件
4 res目录下新建一个文件夹,并将其命名为anim。通过访问确认:res/anim
5 创建新的Android XML文件,必须创建下面列出了三种不同的文件
6 创建myanimation.xml,clockwise.xml,fade.xml文件并添加XML代码
7 修改 res/values/string.xml 文件,并添加必要的字符串组成部分
8 修改res/menu/main.xml文件,并添加必要的菜单组件
9 运行应用程序并选择要运行的Android设备,并在其上安装的应用和验证结果。

这里是修改后的代码 src/com.yii bai.animation/MainActivity.java.

package com.example.animation;

import com.example.animation.R;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class MainActivity extends Activity {

   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }

   @Override
   public boolean onCreateOptionsMenu(Menu menu) {
      // Inflate the menu; this adds items to the action bar if it is present.
      getMenuInflater().inflate(R.menu.main, menu);
      return true;
   }

   public boolean onOptionsItemSelected(MenuItem item) 
   { 
   super.onOptionsItemSelected(item); 
      switch(item.getItemId()) 
      { 
      case R.id.zoomInOut:
         ImageView image = (ImageView)findViewById(R.id.imageView1);
         Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.myanimation);
         image.startAnimation(animation);
            return true;
      case R.id.rotate360:
        ImageView image1 = (ImageView)findViewById(R.id.imageView1);
        Animation animation1 = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.clockwise);
        image1.startAnimation(animation1);
            return true;
      case R.id.fadeInOut:
        ImageView image2 = (ImageView)findViewById(R.id.imageView1);
        Animation animation2 = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.fade);
        image2.startAnimation(animation2);
           return true;


      }
      return false;
   }

}

这里是修改后的代码 res/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:gravity="top"
   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_alignParentTop="true"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="179dp"
      android:src="@drawable/ic_launcher" />

</RelativeLayout>

这里是修改后的代码 res/anim/myanimation.xml.

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

   <scale xmlns:android="http://schemas.android.com/apk/res/android"
      android:fromXScale="0.5"
      android:toXScale="3.0"
      android:fromYScale="0.5"
      android:toYScale="3.0"
      android:duration="5000"
      android:pivotX="50%"
      android:pivotY="50%" >

   </scale>


   <scale xmlns:android="http://schemas.android.com/apk/res/android"
      android:startOffset="5000"
      android:fromXScale="3.0"
      android:toXScale="0.5"
      android:fromYScale="3.0"
      android:toYScale="0.5"
      android:duration="5000"
      android:pivotX="50%"
      android:pivotY="50%" >

   </scale>

</set>

这里是修改后的代码 res/anim/clockwise.xml.

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

   <rotate xmlns:android="http://schemas.android.com/apk/res/android"
      android:fromDegrees="0"
      android:toDegrees="360"
      android:pivotX="50%"
      android:pivotY="50%"
      android:duration="5000" >

   </rotate>

   <rotate xmlns:android="http://schemas.android.com/apk/res/android"
      android:startOffset="5000"
      android:fromDegrees="360"
      android:toDegrees="0"
      android:pivotX="50%"
      android:pivotY="50%"
      android:duration="5000" >

   </rotate>

</set>

这里是 res/anim/fade.xml 的代码

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
   android:interpolator="@android:anim/accelerate_interpolator" >

   <alpha
      android:fromAlpha="0"
      android:toAlpha="1" 
      android:duration="2000" >

   </alpha>


   <alpha
      android:startOffset="2000"
      android:fromAlpha="1"
      android:toAlpha="0" 
      android:duration="2000" >

   </alpha>
   
</set>

这里是修改后的代码 res/menu/main.xml.

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

   <item
      android:id="@+id/rotate360"
      android:orderInCategory="100"
      android:showAsAction="never"
      android:title="@string/rotate_String"/>
   <item
      android:id="@+id/zoomInOut"
      android:orderInCategory="100"
      android:title="@string/zoom_In_Out"/>

   <item
      android:id="@+id/fadeInOut"
      android:orderInCategory="100"
      android:title="@string/fade_String"/>


</menu>

这里是修改后的代码 res/values/string.xml.

<?xml version="1.0" encoding="utf-8"?>
<resources>

   <string name="app_name">Animation</string>
   <string name="action_settings">Settings</string>
   <string name="hello_world">Hello world!</string>
   <string name="zoom_In_Out">Zoom In/Out</string>
   <string name="rotate_String">Clockwise/Anti Clockwise</string>
   <string name="fade_String">Fade In/Out</string>

</resources>

下面是默认代码 AndroidManifest.xml.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.yiibai.animation"
   android:versionCode="1"
   android:versionName="1.0" >

   <uses-sdk
   android:minSdkVersion="8"
   android:targetSdkVersion="17" />

   <application
      android:allowBackup="true"
      android:icon="@drawable/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme" >
      <activity
         android:name="com.yiibai.animation.MainActivity"
         android:label="@string/app_name" >
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>

</manifest>

让我们试着运行上面动画应用程序。启动应用程序之前Android Studio会显示如下窗口,选择要运行Android应用程序的选项。
选择移动设备作为一个选项,然后检看移动设备将显示如下界面:

Anroid Camera Tutorial

 

现在只要从手机中选择菜单,菜单将显示这将是这样的:

Anroid Animation Tutorial

现在只是在选择Zoom in , Zoom out从菜单缩小选项,动画将是这样的:

Anroid Animation Tutorial

现在只要从菜单中选择顺时针选项和动画看起来是这样的:

Anroid Animation Tutorial

现在只从菜单中选择输入/输出选件褪色和动画看起来是这样的:

Anroid Animation Tutorial

注:如果在模拟器中运行它,可能会遇到不流畅的动画效果。所以必须运行在Android手机中才能体验到流畅的动画。
以上代码下载:http://pan.baidu.com/s/1sjuNZ7R