電子メールまたはAndroidのWhasAppでPDFファイルを送信できません。以下はpdfファイルを送信する私のコードです - 何が間違っていますか?アセットフォルダからpdfファイルを送信する方法
File file = new File("android.resource://beeonline.com.chromatography/raw/vendormumbai.pdf");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Sharing Mumbai File...");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "Sharing File...");
try {
startActivity(Intent.createChooser(intent, "Share PDF file"));
} catch (ActivityNotFoundException e) {
Toast.makeText(ActivityshowVendorForm.this, "Error: Cannot open or share created PDF report.", Toast.LENGTH_SHORT).show();
}
こんにちは、私はpdfファイルをメールやwatsupで送信することができません。アンドロイド以上は、私のコードは、PDFファイルを送信するミス間違っている何か –