码迷,mamicode.com
首页 > 其他好文 > 详细

Splash界面使用动画

时间:2014-12-08 12:20:42      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   使用   sp   java   on   div   

经历过几次这样的问题了。设置好了动画之后,动画不执行。如下代码:
  1. setFullScreen();
  2. View view = LViewHelper.getView(R.layout.splash);
  3. setContentView(R.layout.splash);
  4. AlphaAnimation aa = new AlphaAnimation(0.1f, 1.0f);
  5. aa.setDuration(2000);
  6. view.startAnimation(aa);
  7. aa.setAnimationListener(new AnimationListener() {
  8. @Override
  9. public void onAnimationStart(Animation animation) {
  10. }
  11. @Override
  12. public void onAnimationRepeat(Animation animation) {
  13. }
  14. @Override
  15. public void onAnimationEnd(Animation animation) {
  16. startActivity(new Intent(SplashActivity.this, MainActivity.class));
  17. finish();
  18. }
  19. });
找原因,找了半天找不到,动画就是不执行。经过反复的测试,才发现了问题,就是view的重复问题,只要把需要动画的view加载到界面中,代码如下:
  1. setFullScreen();
  2. View view = LViewHelper.getView(R.layout.splash);
  3. setContentView(view);
  4. AlphaAnimation aa = new AlphaAnimation(0.1f, 1.0f);
  5. aa.setDuration(2000);
  6. view.startAnimation(aa);
  7. aa.setAnimationListener(new AnimationListener() {
  8. @Override
  9. public void onAnimationStart(Animation animation) {
  10. }
  11. @Override
  12. public void onAnimationRepeat(Animation animation) {
  13. }
  14. @Override
  15. public void onAnimationEnd(Animation animation) {
  16. startActivity(new Intent(SplashActivity.this, MainActivity.class));
  17. finish();
  18. }
  19. });
原来的代码,只是初始化了一个带动画的view,而并没有把view显示到界面上,这样就解决了这个问题。











Splash界面使用动画

标签:style   http   io   ar   使用   sp   java   on   div   

原文地址:http://www.cnblogs.com/linwoain/p/4150659.html

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