From: crbug.com/629907
https://developer.android.com/reference/android/widget/TextView.OnEditorActionListener.html
In our App we are using this interface to read enter key from keyboard or barcode scanners.
mEditText.setOnEditorActionListener(new OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event){
if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER){
// some app logic
return true;
}
return false;
}
});
It's never get this callback.
Tested on Windows 10 and MAC OS X with latest ARC and chrome canary.
Comment 1 by sheriffbot@chromium.org
, Aug 13 2016