[android-developers] Re: Adding Hyerplink in an Email Body intent

2010-04-08 Thread And-Rider
thank you very much.. On Apr 9, 10:30 am, Kumar Bibek wrote: > If you want to display it on an EditText or a TextView use Spanned > class to pass the HTML text. > > Spanned strSpan = Html.fromHtml(htmlString); > > Use this Spanned object and set it to the EditText or a TextView. > > Thanks and Re

[android-developers] Re: Adding Hyerplink in an Email Body intent

2010-04-08 Thread Kumar Bibek
If you want to display it on an EditText or a TextView use Spanned class to pass the HTML text. Spanned strSpan = Html.fromHtml(htmlString); Use this Spanned object and set it to the EditText or a TextView. Thanks and Regards, Kumar Bibek On Apr 9, 10:24 am, And-Rider wrote: > Is it possible