博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
补间动画——淡入淡出动画
阅读量:6178 次
发布时间:2019-06-21

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

hot3.png

xml:

<set xmlns:android="http://schemas.android.com/apk/res/android">

    <scale android:fromXScale="1.0" android:toXScale=".5"
        android:fromYScale="1.0" android:toYScale=".5"
        android:pivotX="50%p" android:pivotY="50%p"
        android:duration="2000" />
</set>

Activity里的:

Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.alphne);
 mainTextView.startAnimation(animation);
animation.setAnimationListener(new Animation.AnimationListener() {。。。。。。。}

转载于:https://my.oschina.net/u/3730650/blog/1576773

你可能感兴趣的文章
我的友情链接
查看>>
Raid磁盘阵列真的是100%的安全吗?raid有哪些常见的故障?
查看>>
Raid5两块硬盘离线解决方案 -阵列数据恢复案例
查看>>
IBM AIX存储层结构介绍 / 常用命令整理
查看>>
sudo用法简记
查看>>
有关宏定义的一篇文章
查看>>
Kubernetes 基本概念
查看>>
Linux命令:ssh,scp使用及免密码登录
查看>>
我的友情链接
查看>>
在CentOS上编译安装Nginx+实验环境搭建+测试
查看>>
支持二次开发的Zigbee模块(SNAP技术)
查看>>
我的友情链接
查看>>
软件测试常用术语
查看>>
linux磁盘与文件系统管理
查看>>
ORACLE 索引详解
查看>>
第五课_课后习题解答
查看>>
Linux日志系统分析
查看>>
Linux下双网卡绑定bond0
查看>>
你是否也在服务器租用的过程中对服务器各方面的问题产生疑问呢????
查看>>
SSH2屌丝增强版1:构建GenericDao
查看>>