MsgBox problem

Ricky D

Well-Known Member
Licensed User
Longtime User
I have just installed v1.9.

I have an activity with buttons on it.

When I show a msgbox and touch ok if there is one of my buttons underneath the ok button of the msgbox it gets clicked too.

I'm running android 4.0.3

Has anyone else experienced this and if so how did you fix it?

regards, Ricky

Edit: When I put code in the button click for the underlying button it doesn't do the behaviour. What was happening is I'd hear 1 click for the Ok of the msgbox then another click quickly as the msgbox closed.
 
Last edited:

Roger Garstang

Well-Known Member
Licensed User
Longtime User
Windows and Windows Mobile OS Message Boxes tend to have the same issues by only "eating" the first half of a message- They will take the keydown, but leave the keyup, so if your application processes keyup (Bad since you don't get repeat rates) then it will send keys to the window below. You'd think OS designers would figure this stuff out by now. I think the problem is there are too many Developers starting out in .Net/Java only and don't have the foundation in the older stuff and history to know how things work and why.
 
Upvote 0

Ricky D

Well-Known Member
Licensed User
Longtime User
@Margret I hope that will fix it.

regards, Ricky
 
Upvote 0

Ricky D

Well-Known Member
Licensed User
Longtime User
Erel, now I can't reproduce it.

Don't you just love (I'm being sarcastic) computers!

If it pops up again I'll post a new thread with project attached.

regards, Ricky
 
Upvote 0
Top