Allow NestedScrollView to always intercept touches

Currently if a NestedScrollView's content aren't long
enough to scroll then it doesn't intercept any touch
events. That is fine for it's own scrolling but can
interfere with things when nested scrolling is in the
mix.

By not intercepting any touch events, nested scrolling
will not happen if the touch event originate from a child
view which has it's own touch handling (i.e. a clickable
Button).

BUG: 23380443
Change-Id: Ieec61ecb193068a538623a8c5fbdb08efea2c6a5
diff --git a/v4/java/android/support/v4/widget/NestedScrollView.java b/v4/java/android/support/v4/widget/NestedScrollView.java
index 1bcc7af..583c728 100644
--- a/v4/java/android/support/v4/widget/NestedScrollView.java
+++ b/v4/java/android/support/v4/widget/NestedScrollView.java
@@ -576,13 +576,6 @@
             return true;
         }
 
-        /*
-         * Don't try to intercept touch if we can't scroll anyway.
-         */
-        if (getScrollY() == 0 && !ViewCompat.canScrollVertically(this, 1)) {
-            return false;
-        }
-
         switch (action & MotionEventCompat.ACTION_MASK) {
             case MotionEvent.ACTION_MOVE: {
                 /*