Skip to content

Instantly share code, notes, and snippets.

@ktvipin27
Created June 26, 2020 12:21
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 ktvipin27/522f54a433977a1a184a71d61c5109e7 to your computer and use it in GitHub Desktop.
Save ktvipin27/522f54a433977a1a184a71d61c5109e7 to your computer and use it in GitHub Desktop.
CameraFragment for cameraX sample
class CameraFragment : Fragment(R.layout.fragment_camera), ControlView.Listener {
//...
override fun onResume() {
super.onResume()
if (!PermissionFragment.hasPermissions(requireContext()))
findNavController()
.navigate(CameraFragmentDirections.actionCameraFragmentToPermissionFragment())
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment