Animations的第二種使用方法
1在res檔案夾下建立一個anim檔案夾
2.建立xml檔案,並首先加入set標籤,改標籤如下:
android:interpolator="@android:anim/accelerate_interpolator">
3.在該標籤中加入rotate,alpha,scale或translate標籤
4.在代碼中使用AnimationUtils當中裝載xml檔案,並產生Animation對象
下面是代碼
MainActivity.java
package com.yx.animations01;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.AnimationUtils;
import android.view.animation.RotateAnimation;
import android.view.animation.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity {
private Button scaleButton=null;
private Button rotateButton=null;
private Button alphaButton=null;
private Button translateButton=null;
private ImageView imageView = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
scaleButton = (Button) findViewById(R.id.scaleButton);
scaleButton.setOnClickListener(new scaleButtonListener());
rotateButton = (Button) findViewById(R.id.rotateButton);
rotateButton.setOnClickListener(new rotateButtonListener());
alphaButton = (Button) findViewById(R.id.alphaButton);
alphaButton.setOnClickListener(new alphaButtonListener());
translateButton = (Button) findViewById(R.id.translateButton);
translateButton.setOnClickListener(new translateButtonListener());
imageView = (ImageView) findViewById(R.id.imageViewId);
}
class scaleButtonListener implements OnClickListener{
@Override
public void onClick(View v) {
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.scale);
imageView.startAnimation(animation);
}
}
class rotateButtonListener implements OnClickListener{
@Override
public void onClick(View v) {
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.rotate);
imageView.startAnimation(animation);
}
}
//淡入淡出
class alphaButtonListener implements OnClickListener{
@Override
public void onClick(View v) {
//使用AnimationUtils裝載動畫設定檔案
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.alpha);
imageView.startAnimation(animation);
}
}
class translateButtonListener implements OnClickListener{
@Override
public void onClick(View v) {
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.translate);
imageView.startAnimation(animation);
}
}
}
下面分別是四個xml
alpha.xml
android:interpolator="@android:anim/accelerate_interpolator">
android:toAlpha="0.0"
android:startOffset="500"
android:duration="500">
rotate.xml
android:interpolator="@android:anim/accelerate_interpolator">
android:toDegrees="+350"
android:pivotX="50%"
android:pivotY="50%"
android:duration="3000">
scale.xml
android:interpolator="@android:anim/accelerate_interpolator">
android:fromXScale="1.0"
android:toXScale="0.0"
android:fromYScale="1.0"
android:toYScale="0.0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="2000"
>
translate.xml
android:interpolator="@android:anim/accelerate_interpolator">
android:toXDelta="100%"
android:fromYDelta="0%"
android:toYDelta="100%"
android:duration="2000"
/>
注意xml檔案的置放位置