0

これは私のコードです:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.sharebutton:
            shareImage();
            break;

        default:
            return super.onOptionsItemSelected(item);
    }
    return true;
}

private void shareImage() {
    Intent share = new Intent(Intent.ACTION_SEND);

     share.setType("image/*");
    String imagePath = Environment.getExternalStorageDirectory()
            + "/myImage.png";

    File imageFileToShare = new File(imagePath);

    Uri uri = Uri.fromFile(imageFileToShare);
    share.putExtra(Intent.EXTRA_STREAM, uri);
    Bitmap bmp = BitmapFactory.decodeFile(imagePath);

    startActivity(Intent.createChooser(share, "Share"));
}

画像を共有しようとしていますが、共有されていません。エラーは発生しません。誰が何が問題なのか教えてもらえますか?

4

1 に答える 1

0
String pathURL = "File Real Path"
Uri bmpUri = Uri.fromFile(new File(pathURL));
Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("image/*");
    shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
    startActivity(Intent.createChooser(shareIntent, "Share Image"));
于 2016-07-08T17:48:07.947 に答える