New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 637293 link

Starred by 2 users

Issue metadata

Status: Assigned
Owner:
Cc:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug



Sign in to add a comment

ARC: onEditorAction not called

Project Member Reported by denniskempin@google.com, Aug 12 2016

Issue description

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.

 
Project Member

Comment 1 by sheriffbot@chromium.org, Aug 13 2016

Labels: Hotlist-Google
Status: Assigned (was: Untriaged)

Sign in to add a comment