美文网首页
揭露效果

揭露效果

作者: CQ_TYL | 来源:发表于2019-01-21 11:07 被阅读0次

揭露效果是一个新增动画效果,体验非常不错。很多App都已经开始用起来了。
效果图:


效果图
<ImageView
        android:id="@+id/rect"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_marginTop="30dp"
        android:src="@mipmap/ic_launcher"  />
 
rect =  (ImageView) findViewById(R.id.rect);
 
Animator animator2 = ViewAnimationUtils.createCircularReveal(rect, 0, 0, 0, (float) Math.hypot(rect.getWidth(), rect.getHeight()));
animator2.setDuration(2000);
animator2.start();

相关文章

网友评论

      本文标题:揭露效果

      本文链接:https://www.haomeiwen.com/subject/itaqjqtx.html