0

我正在使用以下代码将图像共享到 facebook,但它不起作用。

                Intent share = new Intent(Intent.ACTION_SEND);
                share.setType("image/png");
                share.putExtra(Intent.EXTRA_STREAM,
                Uri.parse("/sdcard/img1.png"));
                startActivity(Intent.createChooser(share, "Share Image"));
4

1 回答 1

0
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(path);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));

一,它应该按照这个顺序只是为了可读性和合理的原因

  1. 你需要说错误是什么......

  2. 永远不要硬编码图像“/sdcard/img1.png”的路径,而是使用 getExternalStorageDirectory()

于 2012-11-27T17:43:32.987 回答