luoye

Results 1 comments of luoye

我在部分机型上遇到了这个问题 修复方案 ``` @Override public Bitmap getBitmap() { Bitmap bmp = null; Drawable drawable = getDrawable(); if (drawable instanceof BitmapDrawable) { bmp = ((BitmapDrawable) drawable).getBitmap(); } //修复裁剪区域不一致问题 if (bmp !=...