生也有涯,知也无涯。这篇文章主要讲述android中的动画之变化动画事例2相关的知识,希望能为你提供帮助。
之前,我已经说了下,关于变换动画的糅合。在这里,我将说的是,写一个动画集AnimationSet(我们知道,在java中有set容器,而set容器的特点就是:1.无序2.不含重复元素。相当于是数学中的集合)用来存放多个Animation对象,这是JAVA代码的方法,还有一个方法就是在anim下的xml代码写一个集合,用来存放多个动画,我在这里用的是第二种方法
anim文件下的xml代码
xml代码
1 < ?xml version="1.0" encoding="UTF-8"?> 2 < set xmlns:android="http://schemas.android.com/apk/res/android" 3> 4< alpha 5android:duration="2000" 6android:fromAlpha="0.0" 7android:toAlpha="1.0" 8android:fillAfter="true" 9/> 10< alpha 11android:startOffset="2000" 12android:fromAlpha="1.0" 13android:toAlpha="0.0" 14android:duration="2000" 15android:fillBefore="true" 16/> 17 < /set>
布局文件代码
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.Demo2; 2 3 4 5 import com.example.androidanimation.R; 6 7 import android.app.Activity; 8 import android.os.Bundle; 9 import android.view.View; 10 import android.view.View.OnClickListener; 11 import android.view.animation.Animation; 12 import android.view.animation.AnimationUtils; 13 import android.widget.Button; 14 import android.widget.ImageView; 15 16 public class MainActivity extends Activity implements OnClickListener{ 17private Button button = null; 18private ImageView imageview = null; 19protected void onCreate(Bundle savedInstanceState) { 20super.onCreate(savedInstanceState); 21setContentView(R.layout.activity_main); 22button = (Button) findViewById(R.id.button_scale); 23imageview = (ImageView) findViewById(R.id.imageview_scale); 24button.setOnClickListener(this); 25} 26public void onClick(View v) { 27Animation animation = AnimationUtils.loadAnimation(this, R.anim.demo2); 28imageview.startAnimation(animation); 29} 30 }
【android中的动画之变化动画事例2】经过我们就可以使用一个集合来加载一个动画了,是不是很神奇啊?
推荐阅读
- android中的动画之变化动画事例4
- 如何修复Windows 10激活错误0xc004f074(分步指南)
- 如何修复Windows Defender错误代码0x800106ba(解决办法)
- 如何修复Windows更新800b0109错误(解决方法指南)
- 如何修复Windows 10/8/7上的Clr20r3错误(解决方法)
- 什么是Software_Reporter_Tool.exe以及如何禁用它()
- 什么是BTServer.exe以及如何修复Windows 10中的错误()
- 如何修复Windows系统中的0xc0000005错误(解决办法)
- 如何在Windows 10上启用或禁用键盘背光(分步指南)