android图片透明度跟缩放大小动画事件

简介:

概序 : 动画事件写在xml中,然后用AnimationUtils去加载动画事件,再监听动画结束事件,隐藏imageview。


1. player_double_click_animation.xml 动画文件

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.     <alpha  
  4.         android:duration="800"  
  5.         android:fromAlpha="0.1"  
  6.         android:toAlpha="1.0"/>  
  7.   
  8.     <scale  
  9.         android:duration="800"  
  10.         android:fillAfter="false"  
  11.         android:fromXScale="0.2"  
  12.         android:fromYScale="0.2"  
  13.         android:interpolator="@android:anim/accelerate_decelerate_interpolator"  
  14.         android:pivotX="50%"  
  15.         android:pivotY="50%"  
  16.         android:toXScale="1.0"  
  17.         android:toYScale="1.0"/>  
  18. </set>  


alpha参数说明:

android:fromAlpha="1.0"   //这是表示动画一开始是完全不透明
android:toAlpha="0.0"        //这是表示动画结果时是完全透明
android:duration="500"    //这是动画的时间

scale参数说明:

float fromX 动画起始时 X坐标上的伸缩尺寸 
float toX 动画结束时 X坐标上的伸缩尺寸   
float fromY 动画起始时Y坐标上的伸缩尺寸  
float toY 动画结束时Y坐标上的伸缩尺寸  
int pivotXType 动画在X轴相对于物件位置类型  
float pivotXValue 动画相对于物件的X坐标的开始位置   
int pivotYType 动画在Y轴相对于物件位置类型   
float pivotYValue 动画相对于物件的Y坐标的开始位置  


2.布局文件test_aniamtion.xml

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <Button  
  8.         android:id="@+id/click"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="点击我" />  
  12.   
  13.     <ImageView  
  14.         android:id="@+id/like"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:layout_gravity="center"  
  18.         android:src="@drawable/icon_video_double_click"  
  19.         android:visibility="gone" />  
  20.   
  21. </LinearLayout>  


3.MainActivity.java

  1. public class MainActivity extends Activity {  
  2.     private ImageView imageView;  
  3.       
  4.     @Override  
  5.     protected void onCreate(Bundle savedInstanceState) {  
  6.         super.onCreate(savedInstanceState);  
  7.         setContentView(R.layout.test_aniamtion);  
  8.         findViewById(R.id.click).setOnClickListener(listener);  
  9.         imageView=(ImageView) findViewById(R.id.like);  
  10.     }  
  11.       
  12.     private OnClickListener listener=new OnClickListener() {  
  13.         @Override  
  14.         public void onClick(View v) {  
  15.             imageView.setVisibility(View.VISIBLE);  
  16.             //加载动画  
  17.             Animation animation=AnimationUtils.loadAnimation(MainActivity.this,R.anim.player_double_click_animation);  
  18.             imageView.startAnimation(animation);//开始动画  
  19.             animation.setAnimationListener(new AnimationListener(){  
  20.                 @Override  
  21.                 public void onAnimationStart(Animation animation) {}  
  22.                 @Override  
  23.                 public void onAnimationRepeat(Animation animation) {}  
  24.                 @Override  
  25.                 public void onAnimationEnd(Animation animation) {//动画结束  
  26.                     imageView.setVisibility(View.GONE);  
  27.                 }  
  28.             });  
  29.         }  
  30.     };  
  31. }  


效果图如下:




点击下载

目录
相关文章
|
4月前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
79 2
基于Android P,自定义Android开机动画的方法
|
2月前
|
Android开发 UED
Android 中加载 Gif 动画
【10月更文挑战第20天】加载 Gif 动画是 Android 开发中的一项重要技能。通过使用第三方库或自定义实现,可以方便地在应用中展示生动的 Gif 动画。在实际应用中,需要根据具体情况进行合理选择和优化,以确保用户体验和性能的平衡。可以通过不断的实践和探索,进一步掌握在 Android 中加载 Gif 动画的技巧和方法,为开发高质量的 Android 应用提供支持。
|
2月前
|
Android开发
Android面试高频知识点(1) 图解Android事件分发机制
Android面试高频知识点(1) 图解Android事件分发机制
|
2月前
|
Android开发
Android面试高频知识点(1) 图解 Android 事件分发机制
Android面试高频知识点(1) 图解 Android 事件分发机制
39 1
|
3月前
|
存储 缓存 编解码
Android经典面试题之图片Bitmap怎么做优化
本文介绍了图片相关的内存优化方法,包括分辨率适配、图片压缩与缓存。文中详细讲解了如何根据不同分辨率放置图片资源,避免图片拉伸变形;并通过示例代码展示了使用`BitmapFactory.Options`进行图片压缩的具体步骤。此外,还介绍了Glide等第三方库如何利用LRU算法实现高效图片缓存。
68 20
Android经典面试题之图片Bitmap怎么做优化
|
2月前
|
XML 前端开发 Android开发
Android面试高频知识点(1) 图解Android事件分发机制
Android面试高频知识点(1) 图解Android事件分发机制
Android面试高频知识点(1) 图解Android事件分发机制
|
2月前
|
Android开发
Android 事件分发机制详细解读
Android 事件分发机制详细解读
40 4
|
4月前
|
数据处理 开发工具 数据安全/隐私保护
Android平台RTMP推送|轻量级RTSP服务|GB28181接入之文字、png图片水印的精进之路
本文探讨了Android平台上推流模块中添加文字与PNG水印的技术演进。自2015年起,为了满足应急指挥及安防领域的需求,逐步发展出三代水印技术:第一代为静态文字与图像水印;第二代实现了动态更新水印内容的能力,例如实时位置与时间信息;至第三代,则优化了数据传输效率,直接使用Bitmap对象传递水印数据至JNI层,减少了内存拷贝次数。这些迭代不仅提升了用户体验和技术效率,也体现了开发者追求极致与不断创新的精神。
|
4月前
|
图形学 Android开发
小功能⭐️Unity调用Android常用事件
小功能⭐️Unity调用Android常用事件