Reputation: 2221
I am new to Titanium and created a HelloWorld application. Every time my application starts up a Titanium startscreen is show.
Upvotes: 1
Views: 2458
Reputation: 1
Go to tiapp.xml , remove the splash screen nodes, the Splash screen will not show again.
Upvotes: -1
Reputation: 189594
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.
Upvotes: 4