tags:

views:

476

answers:

2

What's a suitable html parser for Android?

+3  A: 

It depends what you want to do. If you actually want to process html, there are lots of html parsers in Java that should work. Here are some. Here are some more. If you just want to display html, you can do very basic stuff with the HTML class or you can display an entire web page using WebView.

Jay Askren
If this answer was helpful to you, you should consider marking it as the answer.
Jay Askren
A: 

If you are willing to extract data from the html perhaps a simple regex can help you.

Macarse