Skip to content

Instantly share code, notes, and snippets.

@shubhamnikam
Created September 3, 2018 12:34
Show Gist options
  • Save shubhamnikam/422d1ec597de02d8eae22461044af4dc to your computer and use it in GitHub Desktop.
Save shubhamnikam/422d1ec597de02d8eae22461044af4dc to your computer and use it in GitHub Desktop.
Implicit Intent - Open Camera
intentCamera.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (intent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(intent, 1);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment