Android Share Intent With Clickable Link
Solution 1:
First, I wouldn't have expected your project to even build, as string resources do not support arbitrary HTML tags. The only documented ones are <b>, <i>, and <u>.
Second, even if it does support arbitrary HTML tags, you are converting it back from a Spanned (getText()) into a plain string, which will remove that formatting.
To overcome both problems, either move that string into Java (after all, it's not like you have i18n going, with hardcoded English elsewhere in your code snippet), or wrap the string content in a CDATA (while also fixing your broken HTML, to use href for the <a> attribute):
<stringname="shared_via"><![CDATA[via <a href="http://google.com">Jimmy's News App</a>]]></string>At this point, if you look at your concatenated string, it should look like quasi-HTML source:
Check out this news article
via <ahref="http://google.com">Jimmy's News App</a>Next, while you are sending over HTML, you are declaring it as plain text. Many apps will therefore treat it as plain text, and may do anything from ignoring the tag to showing the raw HTML. You are welcome to try text/html as a MIME type and see if you get better results.
Finally, there is no requirement that any app actually honor your links. ACTION_SEND is a request, not a command. There are no rules for how third-party apps use the HTML that you send over, and so you are going to get varying results from varying apps.
Post a Comment for "Android Share Intent With Clickable Link"