android 简单图片动画播放的实例代码
程序员文章站
2023-12-01 20:24:52
xml中:复制代码 代码如下:
<imageview
android:id="@+id/touchview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignparentleft="true"
android:layout_centervertical="true"
android:src="@drawable/touch" />
java中:
mtouchview = (imageview) findviewbyid(r.id.touchview);
alphaanimation malphaanimation = new alphaanimation(0.1f, 1.0f); ////创建一个alphaanimation对象,参数从透明到不透明
xml中:
复制代码 代码如下:
<imageview
android:id="@+id/touchview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignparentleft="true"
android:layout_centervertical="true"
android:src="@drawable/touch" />
java中:
复制代码 代码如下:
mtouchview = (imageview) findviewbyid(r.id.touchview);
alphaanimation malphaanimation = new alphaanimation(0.1f, 1.0f); ////创建一个alphaanimation对象,参数从透明到不透明
malphaanimation.setduration(1000);// 设定动画时间
malphaanimation.setrepeatcount(animation.infinite);//定义动画重复时间
malphaanimation.setrepeatmode(animation.reverse);//通过设置重复时间定义动画的行为
mtouchview.setanimation(malphaanimation);
malphaanimation.start();
上一篇: 谷歌浏览器使用技巧教程
下一篇: UC浏览器怎么清理内存垃圾