实现效果:
ImageVIew放一张图片,图片围着它的中心点自转。
实现过程:
1.在res下新建一个anim文件(有就不需要了)
2.在anim下新建一个xml文件(l),文件名随意,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android=""><rotate
android:fromDegrees="0"android:interpolator="@android:anim/linear_interpolator"android:pivotX="50%"android:pivotY="50%"android:toDegrees="360"android:duration="1500"android:repeatCount="-1"android:visible="true"android:repeatMode="restart"></rotate>
</rotate>
3.ImageView,这和平时写ImageVIew一样,没啥改变
<ImageView
android:id="@+id/ivLD_matchTip"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_centerInParent="true"/>
4.实现
Animation rotate = AnimationUtils.loadAnimation(this,R.anim.ld_rotate);ivLDMatchTip.startAnimation(rotate);
属性的意义:
这篇概括的挺全的
本文发布于:2024-02-02 09:42:47,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170683816842958.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |