Advertisement
Guest User

Untitled

a guest
Mar 19th, 2016
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. static final int REQUEST_IMAGE_CAPTURE = 1;
  2. public void Photo(View view) {
  3. Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  4. if(takePictureIntent.resolveActivity(getPackageManager())!=null){
  5. startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement