using android animation-list

前端 未结 7 559
鱼传尺愫
鱼传尺愫 2020-12-28 08:42

I\'m having a little trouble getting an animated loading spinner to work for a splash page. Nothing shows up when I try to run the following code. Any suggestions? It seem

7条回答
  •  春和景丽
    2020-12-28 09:03

    Don't set image resource in xml code.

    My XML is:

    
    
    
    
    
    
    
    
    

    In Activity i do

    public class SplashActivity extends Activity {
    
    ImageView iv_splash;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);
    
        iv_splash=(ImageView)findViewById(R.id.iv_splash);
        iv_splash.setBackgroundResource(R.drawable.splash);
        final AnimationDrawable progressAnimation =(AnimationDrawable)iv_splash.getBackground();
        progressAnimation.start();
        }
    }
    

    Drawable file

    
    
    
    
    
    
    
    

    It's Working Good :)

提交回复
热议问题