Hello,
I am having quite a weird dilemma with the user input from a keyboard, especially with the ENTER key.
The idea for me is to always go through KeyPress and sometimes in KeyUp.
I found out that when i press enter the first time, the KeyPress event is triggered, i have a HttpJob following that event, and then the KeyPress event is no longer launched.
Here's my httpjob:
I don't see how the httpjob blocks my Activity_KeyPress (and only the enter key)...
Y.
I am having quite a weird dilemma with the user input from a keyboard, especially with the ENTER key.
The idea for me is to always go through KeyPress and sometimes in KeyUp.
I found out that when i press enter the first time, the KeyPress event is triggered, i have a HttpJob following that event, and then the KeyPress event is no longer launched.
Here's my httpjob:
B4X:
If(isConnected And isOnline)Then
Dim getLists As HttpJob
getLists.Initialize("ListJob",Me)
getLists.Download("http://192.168.0.103/mobint/getvideolists.php")
End if
I don't see how the httpjob blocks my Activity_KeyPress (and only the enter key)...
Y.