This commit is contained in:
kunfei
2022-05-23 08:22:27 +08:00
parent dbedf12e7a
commit 062e2ee74f
@@ -69,14 +69,16 @@ class PageView(context: Context) : FrameLayout(context) {
} }
private fun upBitmap() { private fun upBitmap() {
Coroutine.async { post {
screenshot() Coroutine.async {
}.onSuccess { screenshot()
val tmp = bitmap }.onSuccess {
bitmap = it val tmp = bitmap
tmp?.recycle() bitmap = it
}.onError { tmp?.recycle()
AppLog.put("更新PageView图片出错", it) }.onError {
AppLog.put("更新PageView图片出错", it)
}
} }
} }