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 简单图片动画播放的实例代码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)