bm-x / PhotoView

图片浏览缩放控件
2.63k stars 539 forks source link

fitcenter无效呢~~ #96

Open liaohuyu opened 6 years ago

liaohuyu commented 6 years ago

~~如题

liaohuyu commented 6 years ago

private void initFitCenter() { /* if (mImgRect.width() < mWidgetRect.width()) { mScale = mWidgetRect.width() / mImgRect.width();

        mAnimaMatrix.postScale(mScale, mScale, mScreenCenter.x, mScreenCenter.y);

        executeTranslate();
        resetBase();
    }*/
    float scaleX = mWidgetRect.width() / mImgRect.width();
    float scaleY = mWidgetRect.height() / mImgRect.height();

    mScale = scaleX < scaleY ? scaleX : scaleY;

    mAnimaMatrix.postScale(mScale, mScale, mScreenCenter.x, mScreenCenter.y);

    executeTranslate();
    resetBase();
}

改成这样 似乎能行了~~ 不知道有啥毛病没 知道的老铁指出一下