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 ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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…