Merge "Fix ExtendedEditText not handling touch correctly b/31555902" into ub-launcher3-calgary-polish

This commit is contained in:
Hyunyoung Song 2016-09-20 21:10:34 +00:00 committed by Android (Google) Code Review
commit 13c14c8f8c
1 changed files with 4 additions and 2 deletions

View File

@ -40,11 +40,13 @@ public class ExtendedEditText extends EditText {
private OnBackKeyListener mBackKeyListener;
public ExtendedEditText(Context context) {
this(context, null, 0);
// ctor chaining breaks the touch handling
super(context);
}
public ExtendedEditText(Context context, AttributeSet attrs) {
this(context, attrs, 0);
// ctor chaining breaks the touch handling
super(context, attrs);
}
public ExtendedEditText(Context context, AttributeSet attrs, int defStyleAttr) {