android 简单图片动画播放的实例代码
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 让自定义TextView的drawableLeft与文本一起居中
本文主要介绍Android 自定义控件TextView显示居中问题,在开发过程中经常会遇到控件的重写,这里主要介绍TextView的drawableLeft与文本一起居中的问题2016-07-07android仿新闻阅读器菜单弹出效果实例(附源码DEMO下载)
本篇文章介绍了android仿新闻阅读器菜单弹出效果实例,现在很多阅读器都有这个功能,需要的朋友可以看一下。2016-11-11Android控件ImageSwitcher实现左右图片切换功能
这篇文章主要为大家详细介绍了Android控件ImageSwitcher实现左右图片切换功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-05-05Android中使用AsyncTask实现文件下载以及进度更新提示
AsyncTask,它使创建需要与用户界面交互的长时间运行的任务变得更简单,本篇文章主要介绍了Android中使用AsyncTask实现文件下载以及进度更新提示,有兴趣的可以了解一下。2016-12-12
最新评论