如何在AndroidStudio中创建共享按钮

时间:2016-01-03 23:48:51

标签: android android-studio share

我想创建一个按钮,当点击该按钮时,共享一个图像。我发现我可以使用它:

final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/jpg");
final File photoFile = new File(getFilesDir(), "photo.jpg");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(photoFile));
startActivity(Intent.createChooser(shareIntent, "Share image using")); 

但我不知道放在哪里(MainActivity?)我想在WhatsApp中分享图像。

2 个答案:

答案 0 :(得分:0)

你必须设置:shareIntent.setPackage(“com.whatsapp”)才能在whatsapp中分享。

查看此帖子了解详情:sharing image with whatsapp in android

答案 1 :(得分:0)