Java tutorial
//package com.java2s; import android.content.Intent; import android.provider.MediaStore; public class Main { private static Intent getNormalCameraIntent() { Intent intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); return intent; } }