Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created October 19, 2017 12:29
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 ssaurel/5c8dcd81edae1a6dd36030fd6b3d5ee1 to your computer and use it in GitHub Desktop.
Save ssaurel/5c8dcd81edae1a6dd36030fd6b3d5ee1 to your computer and use it in GitHub Desktop.
Request Permissions for Camera on the SSaurel's Blog
buttonEnable.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
ActivityCompat.requestPermissions(MainActivity.this,
new String[] {Manifest.permission.CAMERA}, CAMERA_REQUEST);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment