方法:我堅持在Android方法FloatMath.floor API不發出
@Override
protected boolean isReadyForPullEnd() {
@SuppressWarnings("deprecation")
float exactContentHeight = FloatMath.floor(mRefreshableView.getContentHeight() * mRefreshableView.getScale());
return mRefreshableView.getScrollY() >= (exactContentHeight - mRefreshableView.getHeight());
}
輸出: Error:(116, 39) error: cannot find symbol method floor(float)
的任何一個想法解決這一問題呢?
更多詳情 - 注意:某些輸入文件使用或覆蓋棄用的API。 - 注意:使用-Xlint:deprecation重新編譯以獲取詳細信息。 –