[android-developers] Re: Avoid Black Screen on starting application?

2010-03-24 Thread javame_android
Hi, Thanks a lot Mark. That was really helpful. Thanks Regards Sunil -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Avoid Black Screen on starting application?

2010-03-22 Thread Kumar Bibek
You must be doing a lot of things in the onCreate method. Exit from onCreate method as soon as possible. This would bring up the activity faster. THanks and Regards, Kumar Bibek On Mar 22, 1:15 pm, javame_android su...@softwebsolutions.com wrote: Hi, Whenever I start any Android Application,

[android-developers] Re: Avoid Black Screen on starting application?

2010-03-22 Thread javame_android
Hi, Below is the code that I am using in onCreate() method. /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); /* New Handler to

Re: [android-developers] Re: Avoid Black Screen on starting application?

2010-03-22 Thread Mark Murphy
javame_android wrote: Hi, Below is the code that I am using in onCreate() method. /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Re: Avoid Black Screen on starting application?

2010-03-22 Thread a2ronus
More details on Mark Murphy's reply can be found here: http://developer.android.com/resources/articles/window-bg-speed.html On 22 mrt, 13:01, Mark Murphy mmur...@commonsware.com wrote: javame_android wrote: Hi, Below is the code that I am using in onCreate() method.     /** Called when