通过Twitter应用程序从Android共享图像 - Android

时间:2014-06-26 17:11:59

标签: android android-intent twitter uri android-sharing

我试图通过Twitter应用分享一些文字和图片。图像源是web url。 以下是我的代码:

sharingIntent = new Intent(android.content.Intent.ACTION_SEND);    
sharingIntent.setType("*/*");    
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "I am reading this publication, check it out here: "+bookmark_url+"");
sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse("http://example.com/images/thumbs/file_name.jpg"));

但只有文字通过Twitter应用程序共享。我还收到一条消息说" 无法加载图片"。这段代码有什么问题?

1 个答案:

答案 0 :(得分:7)

Sourav,我认为你必须在分享之前下载图片。您可以manually执行此操作,也可以使用this之类的库。您可以在库的存储库中找到有关如何设置和使用它的简单文档。

下载完图片后,您可以按照以下方法操作:

private Intent shareIntent(String bookmark_url, String imagePath){
    sharingIntent = new Intent(android.content.Intent.ACTION_SEND);    
    sharingIntent.setType("*/*");    
    sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "I am reading this publication, check it out here: "+bookmark_url);
    sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.fromFile(new File(imagePath)));
    return sharingIntent;
}

如果您只想模拟"即时解析图像",请在共享后将其删除。

希望这能帮到你!