Как удалить адрес поставщика файлов из адреса получателей в приложении электронной почты? - PullRequest
0 голосов
/ 30 июня 2019

Я пытаюсь автоматически прикрепить захваченное изображение к почте. Но проблема в том, что наряду с изображением его адрес поставщика файлов также отображается в адресе получателя. Как я могу удалить это?

MainActivity.java

//code to send an email along with the image automatically attached to it
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"xyz123@gmail.com"});
                intent.putExtra(Intent.EXTRA_SUBJECT, "Details");
                intent.putExtra(Intent.EXTRA_TEXT, Details);
                intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                intent.setDataAndType(photoUri, "image/*");
                intent.putExtra(Intent.EXTRA_STREAM, photoUri);
                if (intent.resolveActivity(getPackageManager()) != null) {
                    startActivity(Intent.createChooser(intent, "Shared"));
                }

//code to capture image from android camera
private void dispatchPictureTakeAction() {
        Intent takePic = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        if (takePic.resolveActivity(getPackageManager()) != null) {
            File photoFile = null;
            try {

                photoFile = createPhotoFile();
            } catch (IOException e) {
                Log.v("error occurred", e.getMessage());
            }
            if (photoFile != null) {
                photoUri = FileProvider.getUriForFile(MainActivity.this, getString(R.string.file_provider_authority), photoFile);
                takePic.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);
                startActivityForResult(takePic, 1);
            }
        }
    }

    private File createPhotoFile() throws IOException {
        String name = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
        imageFileName = "JPEG_" + name + "_";
        File storageDir = getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
        image = File.createTempFile(imageFileName, ".jpg", storageDir);
        currentPhotoPath = image.getAbsolutePath();
        return image;
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == 1 && resultCode == RESULT_OK) {
            Bitmap bitmap = BitmapFactory.decodeFile(currentPhotoPath);
            imageView.setImageBitmap(bitmap);
            imageView.setBackgroundColor(0);
        } else if (resultCode == RESULT_CANCELED) {
            Toast.makeText(this, "Cancelled", Toast.LENGTH_SHORT).show();
        }
    }

Было бы здорово, если бы вы предложили какой-нибудь код, который я могу добавить для решения проблемы.

Снимок экрана с проблемой, с которой я сталкиваюсь

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...