2013-03-07 46 views
0

如何使用意向選擇器共享圖像。我曾嘗試使用意向選擇器共享圖像

Intent share = new Intent(Intent.ACTION_SEND); 
     share.setType("image/png"); 

     share.putExtra(Intent.EXTRA_STREAM, 
      Uri.parse(url)); 

其中URL是從互聯網上

我可以使用上面的代碼圖像共享文本犯規得到重視。

回答

-1

嘗試做這個相反,我認爲它會工作

Uri uri = Uri.fromFile(new File(filename)); 
share.putExtra(Intent.EXTRA_STREAM, uri); 
+0

所以你的意思是我應該在SD卡中保存,然後再發布? – user2041902 2013-03-07 20:25:18