Odd issue when using the backspace key in an editText view. The backspace key works okay unless it encounters a space in the text. It then jumps out of the activity; or at least suspends it.
I have keypress code in place on the activity, but this behavior is strange
Any thoughts??
Thanks
Mike
I have keypress code in place on the activity, but this behavior is strange
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
If WebView1.Visible= True Then
WebView1.Back
Return True
Else
Dim Answ As Int
If KeyCode = KeyCodes.KEYCODE_BACK Then
Answ = Msgbox2("Do you want to quit the program ?", "A T T E N T I O N", "Yes", "", "No", Null)
If Answ = DialogResponse.NEGATIVE Then
Return True
End If
End If
End If
Activity.Finish
End Sub
Any thoughts??
Thanks
Mike