How is it possible to return an event from a raisevent from an external activity.
For example in Basic4Android we have this:
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean 'Return True to consume the event
If Keycode = KeyCodes.KEYCODE_BACK Then
Return False
Else
Return False
End If
End Sub