0
試圖通過使用意圖共享將圖像發送到Facebook和Whatsapp。然而,似乎在代碼中, 但無法在WhatsApp的和Facebook發送任何錯誤,它提供了一個敬酒:無法使用意圖共享圖像分享Android
共享失敗,請再試一次
這裏是我使用的代碼,想知道是什麼造成了這個?
Intent shareIntent = new Intent();
public void shareIt(View view)
{
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("image/jpeg");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///data/user/0/obx.com.futurister/files/newImage.jpg"));
startActivity(Intent.createChooser(shareIntent, "Share image using"));
}