developer82
developer82

Reputation: 13713

Titanium - Strange transition from splash screen on SDK 5.2.0

My app has a splash image the is the same as the background image of the first screen of the app. So when starting the app, the transition from the splash screen to the app is smooth - you see the splash and the just buttons that appear - you don't see the background moving, or changing not even in one pixel.

I've started writing my app with sdk 5.1.2 - and that worked great for me.

I've upgraded my app to use the new 5.2.0 SDK (still using regular splash and not the storyboard). In the new SDK the splash shows, then fades out, then you see a black screen, then you see the main page of the app appear. Far from being the smooth transition of 5.1.2.

If I go back to older SDK version - I don't have the problem - but I don't want to get stuck behind in SDK versions - I want to be able to enjoy new features and bug fixes.

Anyone know if it's something that was changed on purpose? or if there is some workaround?

Upvotes: 0

Views: 736

Answers (2)

Fokke Zandbergen
Fokke Zandbergen

Reputation: 3866

This is a bug and we have a FIX pending review: https://jira.appcelerator.org/browse/TIMOB-20453

Upvotes: 1

Mark Boyer
Mark Boyer

Reputation: 209

I had the same issue. I added the following to the tiapp.xml:

<ios>
    <default-background-color>#ffffff</default-background-color>

. . .

You still get a blank screen before the app starts up but at least the screen is solid white which matches my theme better than the black screen.

Upvotes: 0

Related Questions