Skip to content

Instantly share code, notes, and snippets.

@ruthwikkk
Created October 7, 2023 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruthwikkk/ab1bf6827a3892f0c9e23dcc2e99b766 to your computer and use it in GitHub Desktop.
Save ruthwikkk/ab1bf6827a3892f0c9e23dcc2e99b766 to your computer and use it in GitHub Desktop.
Function to capture and draw background
fun getBackgroundAndDrawBehind(parent: ViewGroup) {
canvas?.save()
canvas?.let {
parent.draw(it)
}
canvas?.restore()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment