i want share some image from res/drawable folder in my program . this is my code :
String _ImageFile = "android.resource://" + getResources().getResourceName(R.id.mypic).replace(":", "/");
Uri imageUri = Uri.parse(_ImageFile);
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/jpeg");
intent.putExtra(Intent.EXTRA_STREAM, imageUri);
startActivity(Intent.createChooser(intent, "Share"));
it's work with Instagram but not work with Email or Viber . when i select share with email , attached successfull but send file without any extention . what is my wrong ?