码迷,mamicode.com
首页 > 移动开发 > 详细

android view控件的显示和隐藏动画效果

时间:2015-11-02 15:43:49      阅读:433      评论:0      收藏:0      [点我收藏+]

标签:

// 显示动画
mShowAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
-1.0f, Animation.RELATIVE_TO_SELF, -0.0f);
mShowAction.setRepeatMode(Animation.REVERSE);
mShowAction.setDuration(500);
// 隐藏动画
mHiddenAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF,
0.0f, Animation.RELATIVE_TO_SELF, 0.0f,
Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
-1.0f);
mHiddenAction.setDuration(500);

btn_setting.startAnimation(mShowAction);//开始动画

android view控件的显示和隐藏动画效果

标签:

原文地址:http://www.cnblogs.com/zhaoleigege/p/4930184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!