Skip to content Skip to sidebar Skip to footer

My Android Air App Shows White Screen When Textinput Loses Focus

That's pretty much sums up the question. I have an AIR Mobile Flex App project in FlashDevelop that is using views to show content. Everything works fine, I can add a TextInput or

Solution 1:

The problem is in your application configuration XML. Check your tag. Entering value of "auto" or "cpu" should fix the problem.

<renderMode>auto</renderMode>

In my case I set direct and this was the cause of the issue. Using direct render mode caused the application to not work on HTC Evo 3D and Samsung galaxy s3. It did work on HTC Desire though.

Post a Comment for "My Android Air App Shows White Screen When Textinput Loses Focus"