博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】setAnimation和startAnimation区别
阅读量:5921 次
发布时间:2019-06-19

本文共 1171 字,大约阅读时间需要 3 分钟。

http://stackoverflow.com/questions/10909865/setanimation-vs-startanimation-in-android

http://blog.csdn.net/wyhuan1030/article/details/7409869

 

设置一个动画播放这一观点。如果你想立即播放的动画,使用startAnimation这种方法提供了允许细粒度控制的起始时间和失效,

但你必须确保:1)动画开始时间 2)动画应该开始时的观点,将被视为无效。

[java] 
 
  1. <span id="result_box" lang="zh-CN"></span>  
  2.     /** 
  3.      * Sets the next animation to play for this view. 
  4.      * If you want the animation to play immediately, use 
  5.      * startAnimation. This method provides allows fine-grained 
  6.      * control over the start time and invalidation, but you 
  7.      * must make sure that 1) the animation has a start time set, and 
  8.      * 2) the view will be invalidated when the animation is supposed to 
  9.      * start. 
  10.      * 
  11.      * @param animation The next animation, or null. 
  12.      */  
  13.     public void setAnimation(Animation animation) {  
  14.         mCurrentAnimation = animation;  
  15.         if (animation != null) {  
  16.             animation.reset();  
  17.         }  
  18.     }  

 

现在开始指定的动画。

 

[java] 
 
  1. /** 
  2.  * Start the specified animation now. 
  3.  * 
  4.  * @param animation the animation to start now 
  5.  */  
  6. public void startAnimation(Animation animation) {  
  7.     animation.setStartTime(Animation.START_ON_FIRST_FRAME);  
  8.     setAnimation(animation);  
  9.     invalidateParentCaches();  
  10.     invalidate(true);  
  11. }  

建议使用

startAnimation来启动动画,setAnimation启动动画是需要条件的

你可能感兴趣的文章
angular2 [ngStyle] [ngClass]的用法
查看>>
Word2013生成带有目录索引的PDF文件
查看>>
揭秘码云:全球第二大代码托管平台的核心架构
查看>>
分布式团队面临的五大问题及解决办法
查看>>
如何notepad++配置emmt方法
查看>>
Oracle把Java EE的未来押在Rest API上了?
查看>>
微软亚洲研究院等提出CNN训练新方法RePr,准确率显著提升
查看>>
Angular 2 Directive
查看>>
GCC 8.1支持C++2a的部分特性
查看>>
Uber推出数据湖集成神器DBEvents,支持MySQL、Cassandra等
查看>>
严肃科普:12306能扛得住明星并发出轨级的流量吗?
查看>>
从 SPA 到 PWA:Web App的下一站在哪?
查看>>
Entity Framework Core 2.0的突破性变更
查看>>
云智慧CEO:APM技术难点在于前端数据采集与后端数据分析的结合
查看>>
投入千亿的菜鸟网络智慧物流做得怎么样?
查看>>
HTTP/2推送之难,远超想象
查看>>
杠上Spark、Flink?Kafka为何转型流数据平台
查看>>
百度云BaaS体系揭秘,突破共识机制、单机计算和串行处理三大瓶颈
查看>>
IBM借QISKit打造基于云平台的量子计算
查看>>
GitLab可完全管理Google Kubernetes Engine
查看>>