优化
This commit is contained in:
@@ -570,20 +570,14 @@ object ReadBookConfig {
|
||||
bgDrawable = when (curBgType()) {
|
||||
0 -> ColorDrawable(Color.parseColor(curBgStr()))
|
||||
1 -> {
|
||||
BitmapDrawable(
|
||||
resources,
|
||||
BitmapUtils.decodeAssetsBitmap(
|
||||
appCtx,
|
||||
"bg" + File.separator + curBgStr(),
|
||||
width,
|
||||
height
|
||||
)
|
||||
)
|
||||
val path = "bg" + File.separator + curBgStr()
|
||||
val bitmap = BitmapUtils.decodeAssetsBitmap(appCtx, path, width, height)
|
||||
BitmapDrawable(resources, bitmap)
|
||||
}
|
||||
else -> {
|
||||
val bitmap = BitmapUtils.decodeBitmap(curBgStr(), width, height)
|
||||
BitmapDrawable(resources, bitmap)
|
||||
}
|
||||
else -> BitmapDrawable(
|
||||
resources,
|
||||
BitmapUtils.decodeBitmap(curBgStr(), width, height)
|
||||
)
|
||||
}
|
||||
} catch (e: OutOfMemoryError) {
|
||||
e.printOnDebug()
|
||||
|
||||
Reference in New Issue
Block a user