android中的动画之变化动画事例3

少年辛苦终身事,莫向光阴惰寸功。这篇文章主要讲述android中的动画之变化动画事例3相关的知识,希望能为你提供帮助。
今天我来说下,关于动画的重复的使用。
首先,我在这里使用的是java代码来实现的,创建了一个AlphaAnimation来设置动画的属性。话不多说,直接贴代码
布局文件代码
xml代码

1< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2xmlns:tools="http://schemas.android.com/tools" 3android:layout_width="match_parent" 4android:layout_height="match_parent" 5android:orientation="vertical" 6tools:context="com.example.Tween_Animation.Alpha_MainActivity" > 7 8< Button 9android:id="@+id/button_scale" 10android:layout_width="fill_parent" 11android:layout_height="wrap_content" 12android:text="@string/button_stringScaleAnimation" /> 13 14< LinearLayout 15android:gravity="center" 16android:layout_width="fill_parent" 17android:layout_height="fill_parent" 18android:orientation="vertical" > 19 20< ImageView 21android:id="@+id/imageview_scale" 22android:layout_width="wrap_content" 23android:layout_height="wrap_content" 24android:src="https://www.songbingjia.com/android/@drawable/ic_launcher" /> 25< /LinearLayout> 26 27 < /LinearLayout>

activity代码
JAVA代码
1 package com.example.Demo3; 2 3 import com.example.androidanimation.R; 4 5 import android.app.Activity; 6 import android.os.Bundle; 7 import android.view.View; 8 import android.view.View.OnClickListener; 9 import android.view.animation.AlphaAnimation; 10 import android.view.animation.Animation; 11 import android.widget.Button; 12 import android.widget.ImageView; 13 14 public class MainActivity extends Activity implements OnClickListener{ 15private Button button = null; 16private ImageView imageview = null; 17protected void onCreate(Bundle savedInstanceState) { 18super.onCreate(savedInstanceState); 19setContentView(R.layout.activity_main); 20button = (Button) findViewById(R.id.button_scale); 21imageview = (ImageView) findViewById(R.id.imageview_scale); 22button.setOnClickListener(this); 23} 24@Override 25public void onClick(View v) { 26//创建一个AlphaAnimation的对象--从0.0的透明度到1.0的透明度 27Animation animation = new AlphaAnimation(0.0f, 1.0f); 28//动画持续时间--3s 29animation.setDuration(3000); 30//动画重复次数--5次 31animation.setRepeatCount(5); 32//正序(RESTART), 反序(REVERSE) 33animation.setRepeatMode(Animation.REVERSE); 34imageview.startAnimation(animation); 35} 36 37 }

【android中的动画之变化动画事例3】 

    推荐阅读