get Capture Image Intent - Android Graphics

Android examples for Graphics:Image Intent

Description

get Capture Image Intent

Demo Code

import android.content.Intent;
import android.provider.MediaStore;

public class Main {
  public static Intent getCaptureImageIntent() {
    return new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  }// w  w w  .j av a  2 s .  c o m
}

Related Tutorials