why do you put mHeaderHeight instead of mFooterHeight on line #477 on BounceScroller.java
mFooterView = view;
if (mFooterView != null) {
mFooterView.measure(MeasureSpec.UNSPECIFIED,
MeasureSpec.UNSPECIFIED);
mFooterHeight = mFooterView.getMeasuredHeight();
LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT,
mHeaderHeight);
addView(mFooterView, 0, params);
}
why do you put mHeaderHeight instead of mFooterHeight on line #477 on BounceScroller.java