animation 旋转 缩放 淡入淡出 移动

缺点:没有停留在最终位置。

MainActivity.java:

import android.app.Activity;
import android.os.Bundle;


public class MainActivity extends Activity {


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


}

Animation1Activity.java:

import android.app.Activity;  
import android.os.Bundle;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.view.animation.AnimationUtils;
import android.view.animation.Animation;  
import android.widget.Button;  
import android.widget.ImageView;  
public class Animation1Activity extends Activity {  
 
    private Button rotateButton = null;  
    private Button scaleButton = null;  
    private Button alphaButton = null;  
    private Button translateButton = null;  
    private ImageView image = null;  
  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
  
       super.onCreate(savedInstanceState);  
       setContentView(R.layout.activity_main);  
  
       rotateButton = (Button) findViewById(R.id.rotateButton);  
       scaleButton = (Button) findViewById(R.id.scaleButton);  
       alphaButton = (Button) findViewById(R.id.alphaButton);  
       translateButton = (Button) findViewById(R.id.translateButton);  
       image = (ImageView) findViewById(R.id.image);  
  
       rotateButton.setOnClickListener(new RotateButtonListener()); 
       
       scaleButton.setOnClickListener(new ScaleButtonListener());  
       alphaButton.setOnClickListener(new AlphaButtonListener());  
       translateButton.setOnClickListener(new TranslateButtonListener());  
  
    }  
  
   
  
    class AlphaButtonListener implements OnClickListener {  
  
       public void onClick(View v) {  


           Animation animation = AnimationUtils.loadAnimation(  
                  Animation1Activity.this, R.anim.alpha);  
  
           image.startAnimation(animation);  
       }  
    }  
  
    class RotateButtonListener implements OnClickListener {  
  
       public void onClick(View v) {  
  
           Animation animation = AnimationUtils.loadAnimation(  
                  Animation1Activity.this, R.anim.rotate);  
           image.startAnimation(animation);  
       }  
    }  
  
    class ScaleButtonListener implements OnClickListener {  
       public void onClick(View v) {  
  
           Animation animation = AnimationUtils.loadAnimation(  
                  Animation1Activity.this, R.anim.scale);  
  
           image.startAnimation(animation);  
       }  
    }  
  
    class TranslateButtonListener implements OnClickListener {  
  
       public void onClick(View v) {  
  
           Animation animation = AnimationUtils.loadAnimation(
          Animation1Activity.this, R.anim.translate); 
           
           image.startAnimation(animation);  
       }  
    }  

}  

activity.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  
    android:layout_width="fill_parent"  
  
    android:layout_height="fill_parent"  
  
    android:orientation="vertical" >  
  
   
  
    <LinearLayout  
  
        android:layout_width="wrap_content"  
  
        android:layout_height="wrap_content"  
  
        android:orientation="horizontal" >  
  
         <Button  
  
            android:id="@+id/rotateButton"  
  
            android:layout_width="wrap_content"  
  
            android:layout_height="wrap_content"  
  
            android:text="旋转" />  
  
         <Button  
  
            android:id="@+id/scaleButton"  
  
            android:layout_width="wrap_content"  
  
            android:layout_height="wrap_content"  
  
            android:text="缩放" />  
  
         <Button  
  
            android:id="@+id/alphaButton"  
  
            android:layout_width="wrap_content"  
  
            android:layout_height="wrap_content"  
  
            android:text="淡入淡出" />  
  
         <Button  
  
            android:id="@+id/translateButton"  
  
            android:layout_width="wrap_content"  
  
            android:layout_height="wrap_content"  
  
            android:text="移动" />  
  
    </LinearLayout>  
  
     <LinearLayout  
  
        android:layout_width="fill_parent"  
  
        android:layout_height="fill_parent"  
  
        android:orientation="vertical" >  
  
         <ImageView  
  
            android:id="@+id/image"  
  
            android:layout_width="wrap_content"  
  
            android:layout_height="wrap_content"  
  
            android:layout_centerInParent="true"  
  
            android:src="@drawable/ic_launcher" />  
  
    </LinearLayout>  
  

 </LinearLayout>  

新建文件夹anim:

alpha.xml:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"  
  
    android:interpolator="@android:anim/accelerate_interpolator">  
  
    <!-- fromAlpha和toAlpha是起始透明度和结束时透明度 -->  
  
    <alpha  
  
        android:fromAlpha="1.0"  
  
        android:toAlpha="0.0"  
  
        android:startOffset="500"  
  
        android:duration="500"
        />  
  

</set>  

rotate.xml:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"  
  
    android:interpolator="@android:anim/accelerate_interpolator">  
  
    <!--  
  
        fromDegrees:开始的角度  
  
        toDegrees:结束的角度,+表示是正的  
  
        pivotX:用于设置旋转时的x轴坐标  
  
        例  
  
           1)当值为"50",表示使用绝对位置定位  
  
           2)当值为"50%",表示使用相对于控件本身定位  
  
           3)当值为"50%p",表示使用相对于控件的父控件定位  
  
        pivotY:用于设置旋转时的y轴坐标  
  
      -->  
  
    <rotate  
  
        android:fromDegrees="0"  
        android:toDegrees="-120"  
  
        android:pivotX="50%"  
        android:pivotY="50%"  
  
        android:duration="500"
        android:fillAfter="true"/>  
  

</set>

scale.xml:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"  
  
    android:interpolator="@android:anim/accelerate_interpolator">  
  
   <!--  
  
       起始x轴坐标  
  
           止x轴坐标  
  
           始y轴坐标  
  
           止y轴坐标  
  
           轴的坐标  
  
           轴的坐标  
  
     -->  
  
   <scale  
  
       android:fromXScale="1.0"  
  
       android:toXScale="0.0"  
  
       android:fromYScale="1.0"  
  
       android:toYScale="0.0"  
  
       android:pivotX="50%"  
  
       android:pivotY="50%"  
  
       android:duration="1000"
       />  
  

</set>  

translate.xml:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"  
  
    android:interpolator="@android:anim/accelerate_interpolator">  
  
    <!--  
  
           始x轴坐标  
  
           止x轴坐标  
  
           始y轴坐标  
  
           止y轴坐标  
  
      -->  
  
    <translate  
  
        android:fromXDelta="0%"  
  
        android:toXDelta="100%"  
  
        android:fromYDelta="0%"  
  
        android:toYDelta="100%"  
  
        android:duration="2000"
        />  
  
</set>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值