android 简单图片动画播放的实例代码

android 简单图片动画播放的实例代码,第1张

概述xml中:复制代码代码如下:       <ImageView           android:id=\"@+id/touchview\"    &n

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();

总结

以上是内存溢出为你收集整理的android 简单图片动画播放实例代码全部内容,希望文章能够帮你解决android 简单图片动画播放的实例代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142521.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存