This commit is contained in:
kunfei 2022-05-23 08:22:27 +08:00
parent f27081e49b
commit f1938757da

View File

@ -69,14 +69,16 @@ class PageView(context: Context) : FrameLayout(context) {
}
private fun upBitmap() {
Coroutine.async {
screenshot()
}.onSuccess {
val tmp = bitmap
bitmap = it
tmp?.recycle()
}.onError {
AppLog.put("更新PageView图片出错", it)
post {
Coroutine.async {
screenshot()
}.onSuccess {
val tmp = bitmap
bitmap = it
tmp?.recycle()
}.onError {
AppLog.put("更新PageView图片出错", it)
}
}
}