优化
This commit is contained in:
@@ -15,8 +15,6 @@ import org.chromium.net.UrlRequest
|
||||
import splitties.init.appCtx
|
||||
|
||||
|
||||
//val executor: ExecutorService by lazy { Executors.newCachedThreadPool() }
|
||||
|
||||
val cronetEngine: ExperimentalCronetEngine? by lazy {
|
||||
if (!AppConfig.isGooglePlay) {
|
||||
CronetLoader.preDownload()
|
||||
|
||||
@@ -55,6 +55,9 @@ object ImageProvider {
|
||||
// inJustDecodeBounds如果设置为true,仅仅返回图片实际的宽和高,宽和高是赋值给opts.outWidth,opts.outHeight;
|
||||
op.inJustDecodeBounds = true
|
||||
BitmapFactory.decodeFile(file.absolutePath, op)
|
||||
if (op.outWidth == 0 && op.outHeight == 0) {
|
||||
return Size(errorBitmap.width, errorBitmap.height)
|
||||
}
|
||||
return Size(op.outWidth, op.outHeight)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user