android如何让图片实现动画播放
来源:爱站网时间:2022-10-26编辑:网友分享
如果你想在android开发中让图片实现动画播放的效果,可以来看看爱站技术频道小编整理的资料,这篇文章就是给大家讲述怎么实现的具体操作代码,有需要可以参考下。
xml中:
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开发过程不熟悉的小伙伴可以多来我们爱站技术频道网站找找资料,一定会有不小的收获。
下一篇:详解Android中的回调内容