Draško
Draško

Reputation: 2221

How to start Titanium application ported to Android without welcome Appcelerator screen?

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

Answers (2)

Arbeeorlar
Arbeeorlar

Reputation: 1

Go to tiapp.xml , remove the splash screen nodes, the Splash screen will not show again.

Upvotes: -1

Janusz
Janusz

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

Related Questions