Skip to content

Instantly share code, notes, and snippets.

@colinrtwhite
Last active September 4, 2018 07:09
Show Gist options
  • Save colinrtwhite/0cf8863a59f5d29c642bf99665908397 to your computer and use it in GitHub Desktop.
Save colinrtwhite/0cf8863a59f5d29c642bf99665908397 to your computer and use it in GitHub Desktop.
fun Context.toActivity(): Activity? {
var context = this
while (context is ContextWrapper) {
if (context is Activity) {
return context
}
context = context.baseContext
}
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment