Share Button
Merhaba arkadaşlar uygulamamın içine paylaş butonu eklemeye çalışıyorum.Paylaşabileceğim seçenekler geliyor whatsupp seçiyorum kişiyi seçiyorum "Paylaşım başarısız , lütfen tekrar deneyin" Diyor. Kodum aşşada yardımcı olabilirmisiniz ?
String imagePath = Environment.getExternalStorageDirectory()
+"/" + imageName;
File imageFileToShare = new File(imagePath);
Toast savedToast = Toast.makeText(getApplicationContext(),
imagePath, Toast.LENGTH_SHORT);
savedToast.show();
Uri uri = Uri.fromFile(imageFileToShare);
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/jpeg");
shareIntent.putExtra(Intent.EXTRA_STREAM,uri);
startActivity(Intent.createChooser(shareIntent,"Share Image"));