补间动画xm

来源:互联网 发布:怎么用淘宝买东西支付 编辑:程序博客网 时间:2024/06/09 13:13

package com.example.day06_;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.RotateAnimation;
import android.view.animation.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;

public class MainActivity extends Activity {

private ImageView imageView;@Overrideprotected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    imageView = (ImageView) findViewById(R.id.imageView);}// 透明public void alpha(View v) {    // 得到定义好的动画资源    AlphaAnimation alpha = (AlphaAnimation) AnimationUtils.loadAnimation(            this, R.anim.alpha);    // 开始动画    imageView.startAnimation(alpha);}// 缩放public void scale(View v) {    ScaleAnimation animation = (ScaleAnimation) AnimationUtils.loadAnimation(            this, R.anim.scale);    // 开始动画    imageView.startAnimation(animation);}// 位移public void translate(View v) {    TranslateAnimation animation = (TranslateAnimation) AnimationUtils.loadAnimation(            this, R.anim.translate);    // 开始动画    imageView.startAnimation(animation);}// 旋转public void rotate(View v) {    RotateAnimation animation = (RotateAnimation) AnimationUtils.loadAnimation(            this, R.anim.rotate);    // 开始动画    imageView.startAnimation(animation);}// 集合public void set(View v) {    Animation animation = AnimationUtils.loadAnimation(this, R.anim.set);    imageView.startAnimation(animation);}

}
//////////////////

0 0
原创粉丝点击