[Titanium Mobile] How to Disable Splash Screen

Tadashi Shigeoka ·  Sat, August 25, 2012

I got help on 「QA@IT」 about how to disable the splash screen in Titanium Mobile, so here’s a memo.

Titanium Mobileでスプラッシュスクリーンを非表示にする方法 - QA@IT

■ iOS

For iOS, there is no way to not display it. If you really need to, you could substitute by using an image filled with black and not using transitions. However, this might violate Apple’s Human Interface Guideline compliance, so it’s not recommended. In the first place, the initialization process will always occur, so it’s not desirable for the screen to black out during that time.

■ Android

For Android, where anything goes, after building once, edit the project directory/build/android/res/values/theme.xml.


Change it to this:

That’s all from the Gemba.