Is it possible to display complex HTML content inside TextView ? My HTML is going to have images and video tags. Is that possible or to use WebView component or there is some simpoler solution ?
|
feedback
|
|
If you want to use HTML tags for TextViews, you have to use android.text.Html class, fromHtml().. From Mark Murphy's Technical Stuff... HTML Tags Supported By TextView More importantly, it means that you cannot rely on what it will support from release to release.
For more complex HTML tags you have to use WebView... | |||
|
feedback
|
|
The best way is to use | |||
|
feedback
|
|
I would definitely use WebView instead of TextView. WebView is made for this exact task, so I cannot see why you would want to use TextView in the first place :) | |||
|
feedback
|