共享文本,图像和超链接URL

时间:2017-08-23 08:56:29

标签: java android-intent hyperlink share

我想与一些文本和一个网址共享一个图片,这个图片会深入链接到我的应用程序。我的网址是深层链接应该是超链接的文本,例如。 "此处"

以下是我的代码

final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
shareIntent.putExtra("sms_body", "Hey! I just saw "+res.getData().getBar_name()+"is having "+res.getData().getEvent_name()+"through the App! We should check it out.");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Hey! I just saw "+res.getData().getBar_name()+"is having "+res.getData().getEvent_name()+"through the App! We should check it out."
                    + "\n" + getString(R.string.webview_base)+"site/redirectlink?event_id=" + eventid);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "");
shareIntent.setType("image/*");

任何人都可以帮我吗?

0 个答案:

没有答案