Skip to content

Instantly share code, notes, and snippets.

@aligkts
Created June 16, 2019 10:58
Show Gist options
  • Save aligkts/c0c6289f864ccaf130bf27466b76eb82 to your computer and use it in GitHub Desktop.
Save aligkts/c0c6289f864ccaf130bf27466b76eb82 to your computer and use it in GitHub Desktop.
override fun onResume() {
super.onResume()
camera_view.onResume()
}
override fun onPause() {
super.onPause()
camera_view.onPause()
}
override fun onStart() {
super.onStart()
camera_view.onStart()
}
override fun onStop() {
super.onStop()
camera_view.onStop()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment