views:

55

answers:

1

I am new to Titanium and created a HelloWorld application. Every time my application starts up a Titanium startscreen is show.

+1  A: 

This is done relatively simple. In your titanium project inside the resources folder is a folder for resources which are special for android. Titanium will look into this folder and use the Default.png as the image to display while starting up. Just replace the file that is already existing in this folder with your splash screen image. Be sure to get use Default.png and not default.png because on the device titanium will be case sensitive.

Janusz
Thank you very much. But the thing is that I don't want to have welcome screen.
Deveti Putnik
What would you like it to do while the application is loading? Have a blank screen?
arikfr
I would like to have screen with items such as buttons, tabs, etc...
Deveti Putnik
You could create a splash image that contains a "screenshot" of those buttons and tabs. I believe that's how the other iPhone apps do it. The Contacts app does this I think. It makes you think/feel that the UI controls are already loaded when you open it but in reality you're just seeing a splash image.
Shiki