-2
Androidでファイル形式を送信する方法を教えてください。このファイル形式は.jpgです。 .pdfや.pngがあれば、どうすればいいですか?Androidでファイル形式を送信する方法は?
これは私のコードです:
case R.id.share:
Intent picMessageIntent = new Intent(android.content.Intent.ACTION_SEND);
picMessageIntent.setType("image/*");
File downloadedPic = new File(Environment.getExternalStoragePublicDirectory("SIPRO"),value1+".jpg");
picMessageIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(downloadedPic));
startActivity(Intent.createChooser(picMessageIntent, "Send your picture using:"));
return true;