博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android动画例子。
阅读量:6349 次
发布时间:2019-06-22

本文共 724 字,大约阅读时间需要 2 分钟。

例子一: 补间动画效果,从右进,从左出。
ImageSwitcher mImageSwitcher = new ImageSwitcher(this);mImageSwitcher.setFactory(this);mImageSwitcher.setInAnimation(this, R.anim.slide_big_in_right);mImageSwitcher.setOutAnimation(this, R.anim.slide_big_out_right);

 

例子二:补间动画效果,渐变。

ImageSwitcher mImageSwitcher = new ImageSwitcher(this);        mImageSwitcher.setFactory(this);        AlphaAnimation inAnim = new AlphaAnimation(0, 1);        inAnim.setDuration(300);        mImageSwitcher.setInAnimation(inAnim);        AlphaAnimation outAnim = new AlphaAnimation(1, 0);        outAnim.setDuration(400);        mImageSwitcher.setOutAnimation(outAnim);

 

转载于:https://www.cnblogs.com/lipeineng/p/5338182.html

你可能感兴趣的文章
Css基本样式————轮廓
查看>>
斐波那契数列
查看>>
vSphere vCenter 6.5 安装文档
查看>>
graylog3.0配置收集linux主机和windows主机日志
查看>>
项目:web网站NLB负载均衡
查看>>
文件管理常用命令详解
查看>>
正则表达式
查看>>
菜鸟学python之dict
查看>>
Jinja error: argument of type 'NoneType' is not it
查看>>
『高级篇』docker之微服务架构带来的问题(五)
查看>>
发送arp数据包
查看>>
安卓学习-媒体播放
查看>>
python使用ftp上传文件
查看>>
缓存数据库Memcache
查看>>
MMU的作用及工作过程
查看>>
ASP.NET Core MVC 模型绑定用法及原理
查看>>
使用 libdvm.so 内部函数dvm* 加载 dex
查看>>
数组中出现次数超过一半的数字
查看>>
PostgreSQL -- 系统参数类型与设置
查看>>
记一次lnmp 502故障
查看>>