-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
I had a problem. When i scroll the animation not start correctly.
solve it by replacing in private boolean animationNeedToBeRunOnChild(int[] childLocationOnScreen) this
if (isVerticalScrollView) {
if (childLocationOnScreen[1] <= rootView.getBottom()) {
result = true;
}
for this
if (isVerticalScrollView) {
int heightPx = rootView.getContext().getResources().getDisplayMetrics().heightPixels;
if (childLocationOnScreen[1] <= heightPx ) {
result = true;
}
sorry for my English, and thanks
Metadata
Metadata
Assignees
Labels
No labels