animation扩展2——scale放大之后再缩小

效果图:

 

一、activity代码

package com.liudan.activity;

import android.app.Activity;
import android.os.Bundle;
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.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.ImageView;

public class AnimationActivity extends Activity {
 
    private Button scale,rotate,alpha,translate;
    private ImageView imageView;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        scale = (Button)findViewById(R.id.scale);
        rotate = (Button)findViewById(R.id.rotate);
        alpha = (Button)findViewById(R.id.alpha);
        translate = (Button)findViewById(R.id.translate);
        imageView = (ImageView)findViewById(R.id.imageView);
       
        scale.setOnClickListener(new ScaleListener());
        rotate.setOnClickListener(new RotateListener());
        alpha.setOnClickListener(new AlphaListener());
        translate.setOnClickListener(new TranslateListener());
       
    }
    private class ScaleListener implements OnClickListener{

  @Override
  public void onClick(View v) {
   // TODO Auto-generated method stub
   AnimationSet animationSet = new AnimationSet(true);
   ScaleAnimation scaleAnimation = new ScaleAnimation(1,2f,1,2f,
     Animation.RELATIVE_TO_SELF,0.5f,  
     Animation.RELATIVE_TO_SELF,0.5f);
   scaleAnimation.setDuration(1000);
   animationSet.addAnimation(scaleAnimation);
   animationSet.setFillAfter(true); //让其保持动画结束时的状态。
   imageView.startAnimation(animationSet);
   
   
  }
     
    }
    private class RotateListener implements OnClickListener{

  @Override
  public void onClick(View v) {
   AnimationSet animationSet = new AnimationSet(true);
   ScaleAnimation scaleAnimation = new ScaleAnimation(2,1f,2,1f,
     Animation.RELATIVE_TO_SELF,0.5f,  
     Animation.RELATIVE_TO_SELF,0.5f);
   scaleAnimation.setDuration(1000);
   animationSet.addAnimation(scaleAnimation);

   animationSet.setFillAfter(true); //让其保持动画结束时的状态。
   
   imageView.startAnimation(animationSet);
  }
     
    }
    private class AlphaListener implements OnClickListener{

  @Override
  public void onClick(View v) {
   // TODO Auto-generated method stub
   AnimationSet animationSet = new AnimationSet(true);
   AlphaAnimation alphaAnimation = new AlphaAnimation(1,0);
   alphaAnimation.setDuration(1000);
   animationSet.addAnimation(alphaAnimation);
   imageView.startAnimation(animationSet);
  }
     
    }
    private class TranslateListener implements OnClickListener{

  @Override
  public void onClick(View v) {
   // TODO Auto-generated method stub
   AnimationSet animationSet = new AnimationSet(true);
   TranslateAnimation TranslateAnimation = new TranslateAnimation(
     Animation.RELATIVE_TO_SELF,0f,
     Animation.RELATIVE_TO_SELF,0.5f,
     Animation.RELATIVE_TO_SELF,0f,
     Animation.RELATIVE_TO_SELF,1f);
   TranslateAnimation.setDuration(1000);
   animationSet.addAnimation(TranslateAnimation);
   imageView.startAnimation(animationSet);
   
  }
     
    }
}

 

二、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">
 <Button android:id="@+id/scale" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="测试scale动画效果" />
 <Button android:id="@+id/rotate" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="测试scale放大之后再缩小的动画效果" />
 <Button android:id="@+id/alpha" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="测试alpha动画效果" />
 <Button android:id="@+id/translate" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:text="测试translate动画效果" />
 <ImageView android:id="@+id/imageView"  android:layout_width="wrap_content"
  android:layout_height="wrap_content" android:src="@drawable/icon" />

</LinearLayout>

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值