Good morning everyone, the doubt is as follows. I have some basic fields (name, phone etc), and an option to take pictures. I already have working the sending of email and the button to take photo, I can get the values of all the fields and take the photo including, however I want to know how I do to attach the photo in this email ...
These are the methods to take the picture and save it to your phone's memory card.
public void abrirCamera(){
File picsDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File imageFile = new File(picsDir, "foto.jpg");
Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(imageFile));
startActivity(i);
}
public void takePhoto(View view)
{
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
File photo = new File(Environment.getExternalStoragePublicDirectory
(Environment.DIRECTORY_PICTURES), "Pic.jpg");
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photo));
imageUri = Uri.fromFile(photo);
startActivityForResult(intent, TAKE_PICTURE);
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case TAKE_PICTURE:
if (resultCode == Activity.RESULT_OK) {
Uri selectedImage = imageUri;
getActivity().getContentResolver().notifyChange(selectedImage, null);
ImageView imageView = (ImageView) getActivity().findViewById(R.id.ImageView);
ContentResolver cr = getActivity().getContentResolver();
Bitmap bitmap;
try {
bitmap = android.provider.MediaStore.Images.Media.getBitmap(cr, selectedImage);
imageView.setImageBitmap(bitmap);
fotoCart.setText("");
//Toast.makeText(getActivity(), selectedImage.toString(), Toast.LENGTH_LONG).show();
} catch (Exception e) {
//Toast.makeText(getActivity(), "Failed to load", Toast.LENGTH_SHORT).show();
Log.e("Camera", e.toString());
}
}
}