Under "Activity" in the help files, it says:
Yet EditText does not show KeyPress as being one of its events. Does the EditText's TextChanged event consume the keypresses?
Is Activity the only thing that can use the KeyPress KeyCodes? For example, in EditText's TextChanged, to look for a particular character, it seems like you would use the literal character (such as "A" or "%") and not use KeyCodes.
The KeyPress event occurs when the user has pressed on the key and assuming that no other view has consumed this event (like EditText).
Yet EditText does not show KeyPress as being one of its events. Does the EditText's TextChanged event consume the keypresses?
Is Activity the only thing that can use the KeyPress KeyCodes? For example, in EditText's TextChanged, to look for a particular character, it seems like you would use the literal character (such as "A" or "%") and not use KeyCodes.