JohnHuang
JohnHuang
I met the same problem!using Glide as the image loader
坚果的也是,升级到5.1.1后状态栏依然是黑色的
这个问题应该是Webview的Context 是ApplicationContext的问题,alertDilog的上下文环境不能是Application,但是换成Activity的的context又有内存泄露的情况,一个缺陷吧 @luoruiyi
@liungkejin setBitmap() 将 cache 参数设置为true, 代码中也还是会走createBitmap(),因为setBimap()一开始就将bimap保存的到mSrcBitmap,mSrcBitmap永远都不会为空 /** \* 解码出一块bitmap */ private Bitmap decodeRectBitmap(Rect rect, int sampleSize) { if (rect == null || !mImageRect.contains(rect)) { return null; } ``` synchronized (mBitmapLock)...