画像とタイトルを共有するための共有インテントを設定しましたが、Google ドライブにのみ送信され、理由がわかりません..コードは次のとおりです。
Intent shareCaptionIntent = new Intent(Intent.ACTION_SEND);
shareCaptionIntent.setType("image/*");
//set photo
Uri examplePhoto = Uri.fromFile(getExternalFilesDir(filepath[position]));
shareCaptionIntent.setData(examplePhoto);
shareCaptionIntent.putExtra(Intent.EXTRA_STREAM, examplePhoto);
//set caption
shareCaptionIntent.putExtra(Intent.EXTRA_TITLE, modelname);
startActivity(Intent.createChooser(shareCaptionIntent,"share using:"));