android从url共享图像

android从url共享图像,第1张

概述我想使用这段代码分享一个图像: Intent sharingIntent = new Intent(Intent.ACTION_SEND);Uri imageUri = Uri.parse("http://stacktoheap.com/images/stackoverflow.png");sharingIntent.setType("image/png");sharingIntent.pu 我想使用这段代码分享一个图像:
Intent sharingIntent = new Intent(Intent.ACTION_SEND);Uri imageUri = Uri.parse("http://stacktoheap.com/images/stackoverflow.png");sharingIntent.setType("image/png");sharingIntent.putExtra(Intent.EXTRA_STREAM,imageUri);startActivity(sharingIntent);

我做了一个按钮,调用上面的代码.分享意向打开,但如果我点击“通过彩信分享”,我得到了“无法将此图片添加到您的消息”,如果Facebook我没有我的照片只有一个文本区域.

2天尝试但没有结果:(

请帮忙

解决方法 我使用这些代码从 this tutorial
final ImageVIEw imgvIEw= (ImageVIEw)findVIEwByID(R.ID.FeedImage1);                Uri bmpuri = getLocalBitmapUri(imgvIEw);                if (bmpuri != null) {                    // Construct a ShareIntent with link to image                    Intent shareIntent = new Intent();                    shareIntent.setAction(Intent.ACTION_SEND);                    shareIntent.putExtra(Intent.EXTRA_STREAM,bmpuri);                    shareIntent.setType("image/*");                    // Launch sharing dialog for image                    startActivity(Intent.createChooser(shareIntent,"Share Image"));                    } else {                    // ...sharing Failed,handle error                }

然后将其添加到您的活动中

public Uri getLocalBitmapUri(ImageVIEw imageVIEw) {    // Extract Bitmap from ImageVIEw drawable    Drawable drawable = imageVIEw.getDrawable();    Bitmap bmp = null;    if (drawable instanceof BitmapDrawable){       bmp = ((BitmapDrawable) imageVIEw.getDrawable()).getBitmap();    } else {       return null;    }    // Store image to default external storage directory    Uri bmpuri = null;    try {        file file =  new file(Environment.getExternalStoragePublicDirectory(              Environment.DIRECTORY_DOWNLOADS),"share_image_" + System.currentTimeMillis() + ".png");        file.getParentfile().mkdirs();        fileOutputStream out = new fileOutputStream(file);        bmp.compress(Bitmap.CompressFormat.PNG,90,out);        out.close();        bmpuri = Uri.fromfile(file);    } catch (IOException e) {        e.printstacktrace();    }    return bmpuri;}

然后添加您的应用程序清单

<uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission androID:name="androID.permission.READ_EXTERNAL_STORAGE" />
总结

以上是内存溢出为你收集整理的android从url共享图像全部内容,希望文章能够帮你解决android从url共享图像所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1132029.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存