android图片加载动画

ImageView iv = (ImageView)findViewById(R.id.logo);//获取图片
        
        AlphaAnimation aa = new AlphaAnimation(0.1f, 1.0f);//设置加载动画
        aa.setDuration(3000);
        iv.startAnimation(aa);
        
        aa.setAnimationListener(new AnimationListener() {
            
            @Override
            public void onAnimationStart(Animation animation) {
                // TODO Auto-generated method stub
                
            }
            
            @Override
            public void onAnimationRepeat(Animation animation) {
                // TODO Auto-generated method stub
                
            }
            
            @Override 跳转窗体
            public void onAnimationEnd(Animation animation) {
                // TODO Auto-generated method stub
                Intent it = new Intent(Logo.this,Login.class);
                startActivity(it);
                finish();
                
            }

你可能感兴趣的:(android)