befor the MainActivity shows in my app a white page shows in android -


i wrote app , first activity splash screen befor activity null white page shows. how can remove that? code

 protected void oncreate(bundle savedinstancestate) {     super.oncreate(savedinstancestate);     setcontentview(r.layout.activity_splash);     getactionbar().hide();     delay=4000;     new handler().postdelayed(new runnable() {     @override     public void run() {     intent intent_obj=new intent(splash.this,content.class);     startactivity(intent_obj);     finish();     }     },delay); 

try adding handler code in separate function.

 public void splashtimer(int duration) {     new handler().postdelayed(new runnable() {         @override         public void run() {             intent intent_obj = new intent(splash.this, content.class);             startactivity(intent_obj);             finish();         }     }, duration); } 

and call oncreate() method


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -