Android examples for Graphics:Image Intent
get Capture Image Intent
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 }