Merge "Ensure forwarding listener target is long-clickable" into nyc-mr1-dev

This commit is contained in:
Alan Viverette
2016-07-22 21:09:35 +00:00
committed by Android (Google) Code Review

View File

@@ -58,13 +58,14 @@ public abstract class ForwardingListener
public ForwardingListener(View src) {
mSrc = src;
src.setLongClickable(true);
src.addOnAttachStateChangeListener(this);
mScaledTouchSlop = ViewConfiguration.get(src.getContext()).getScaledTouchSlop();
mTapTimeout = ViewConfiguration.getTapTimeout();
// Use a medium-press timeout. Halfway between tap and long-press.
mLongPressTimeout = (mTapTimeout + ViewConfiguration.getLongPressTimeout()) / 2;
src.addOnAttachStateChangeListener(this);
}
/**