Home | History | Annotate | Download | only in camera

Lines Matching defs:intent

23 import android.content.Intent;
60 Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
61 intent.setType("image/*");
62 intent.putExtra("crop", "true");
63 intent.putExtra("aspectX", 1);
64 intent.putExtra("aspectY", 1);
65 intent.putExtra("outputX", maxDimension);
66 intent.putExtra("outputY", maxDimension);
67 intent.putExtra("noFaceDetection", true);
68 intent.putExtra("return-data", true);
70 startActivityForResult(intent, REQUEST_GET_PHOTO);
75 Intent data) {
98 Intent resultValue = new Intent();