Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently I'm about to display HTML data into my application with fragment. I'm confused of which one I need to use to get better performance between TextView or WebView. I mean, for rendering speed and memory issue.

Know that Html.fromHtml() is available for TextView to display HTML formatted data but I want to try WebView instead of TextView. But don't know rendering speed and memory issue.

share|improve this question

2 Answers

up vote 3 down vote accepted

WebView internally provides different functionality for the display Html data. Also you can use JavaScript in WebView.

While TextView when you are use Html.fromHtml() then its support only few Html tags. So I think its better to use WebView.

I just mentioned JavaScript functionality but There are other functionality like (Zoom Functionality, Image from web, etc..) All supports in WebView.

share|improve this answer
@all - Let me know if I missed something.. – user370305 Dec 13 '12 at 10:47
1  
Nice answer "user370305" – SIVAKUMAR.J Dec 13 '12 at 11:16

depends for what you wish to use it.. if you are loading website and want all the features of that website to be available you should use webview. If you are only displaying one html snippet you should use textview

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.