与图像共享HTML链接

时间:2019-02-16 17:17:31

标签: android share

我知道如何与图像共享普通文本,但我想与图像共享html链接。如果用户将其共享,而第二个用户将单击该链接,它将在应用程序上打开特定的活动。

到目前为止我已经尝试过的

Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
String textToShare = "Check out <a href=\"www.activetoo.app.com\\launch\">" + service_provider.businessName + "</a>";
share.putExtra(Intent.EXTRA_TEXT, textToShare);
share.putExtra(Intent.EXTRA_STREAM, 
Uri.parse("file:///sdcard/temporary_file.jpg"));
startActivity(Intent.createChooser(share, "Share Image"));

这只是将文本作为普通的纯文本发送。

0 个答案:

没有答案