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 tutorialfinal 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共享图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)