protected boolean isReadyForPullEnd() {
float exactContentHeight = FloatMath.floor(mRefreshableView.getContentHeight() * mRefreshableView.getScale());
return mRefreshableView.getScrollY() >= (exactContentHeight – mRefreshableView.getHeight());
}
其中floor要报错怎么替换啊
float exactContentHeight = FloatMath.floor(mRefreshableView.getContentHeight() * mRefreshableView.getScale());
return mRefreshableView.getScrollY() >= (exactContentHeight – mRefreshableView.getHeight());
}
其中floor要报错怎么替换啊
解决方案
20
Android6.0使用 Math.floor 代替 FloatMath.floor 即可;