該圖像是一個url,像http://www.example.com/123/abc.jpg如何使用ACTION_SEND意圖將URL發送到其他應用程序?
我想與其他應用程序共享一些文字和圖像。
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, String.format(getResources().getString(
R.string.share_text), pid));
intent.setType("image/jpg");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("http://www.example.com/123/abc.jpg"));
startActivityForResult(Intent.createChooser(intent, "Share with"),
Settings.SHARE_REQUEST);
但它不工作。這似乎應該是一個本地的圖像?如果這是真的,我該如何將圖像url轉換爲本地URI?謝謝!
您想通過WIFI共享相同設備或某個遠程設備。 – DJhon
@BlueGreen相同的設備,就像在Gmail,Twitter或Facebook上打開一樣。 – zgjie