RTRTRT
要用什么控件?最好有源代码啦~~谢谢各位!

解决方案 »

  1.   

    创建一个activity,背景设为图片,启动应用的时候启动这个activity,在里面做一些初始化的工作,完成后跳转至主界面
      

  2.   

     new Handler().postDelayed(new Runnable(){ 
               
                @Override 
                public void run() { 
                    Intent mainIntent = new Intent(SplashScreen.this,Main.class); 
                    SplashScreen.this.startActivity(mainIntent); 
                        SplashScreen.this.finish(); 
                } 
                   
               }, SPLASH_DISPLAY_LENGHT); 
      

  3.   

    看看这篇文章:
    AndroidGUI28:在onCreate方法中两次调用setContentView可以解决楼主的问题