Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java +1 −1 Original line number Diff line number Diff line Loading @@ -157,7 +157,7 @@ public abstract class ExpandableView extends FrameLayout implements Dumpable { @Override public boolean pointInView(float localX, float localY, float slop) { float top = mClipTopAmount; float top = Math.max(0, mClipTopAmount); float bottom = mActualHeight; return localX >= -slop && localY >= top - slop && localX < ((mRight - mLeft) + slop) && localY < (bottom + slop); Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java +1 −1 Original line number Diff line number Diff line Loading @@ -157,7 +157,7 @@ public abstract class ExpandableView extends FrameLayout implements Dumpable { @Override public boolean pointInView(float localX, float localY, float slop) { float top = mClipTopAmount; float top = Math.max(0, mClipTopAmount); float bottom = mActualHeight; return localX >= -slop && localY >= top - slop && localX < ((mRight - mLeft) + slop) && localY < (bottom + slop); Loading