while the "CUSTOM" text view is drawing. Every view draws to the same canvas. Translation and scale can be changed for every view that is drawn. See
Canvas
methods with descriptions that reference "matrix".
👍🏻 1
Nick Allen
11/18/2021, 5:03 AM
This is not Kotlin or coroutines related at all. You'd get similar weird behavior with Java code and/or any other background thread.
e
elye
11/18/2021, 5:24 AM
Makes sense. While it’s on the background, it’s drawn on the same canvas at a different coordinate measurement. Thanks!
Sorry, I thought it was coroutine related, apparently it’s generic multithreading. 🙏
Thanks @Nick Allen