android 随笔,代码片段

来源:互联网 发布:王羽的大招笔记淘宝 编辑:程序博客网 时间:2024/06/04 07:20

<strong>1.启动页面渐变的alpha动画</strong>
<pre name="code" class="java">AlphaAnimation animation = new AlphaAnimation(0.1f, 1.0f);animation.setDuration(2000);view.startAnimation(animation);
这个view一般是一个layout,背景图片为我们的欢迎图片。



0 0
原创粉丝点击