Android Question Important Message Box being sent to back

ondesic

Active Member
Licensed User
Longtime User
When I install a new app, a toast message pops up telling me how much memory I have left. I don't know if this is part of the 4.12 OS or another program I installed.

When my app is first installed and opened, A EULA and "Whats New" messagebox opens while all resources are loading in the background. The app won't start until the messagebox is confirmed.

The problem is, if the messagebox is open when that toast message pops up, the EULA and "Whats New" dialogs disappear ( or are sent to the back) and my app just hangs forever.

I hope this makes sense. Any ideas?
 

Kevin

Well-Known Member
Licensed User
Longtime User
It sounds like that other app (?) that shows the toast message may be momentarily pausing your app. Message boxes don't stay up through an app pause and restart. You could maybe use a panel instead, which would stay up until you hide it (when the user presses OK), but it isn't modal so it won't "stop" your code like a message box would so you'd have to re-work your code a bit.
 
Upvote 0
Top