WebView and Html - Handle HTML, CSS and Java Script

WebView is a complete simulation of web browser in Android View. If we want to load an HTML page in android application, WebView can do this for us. Note that HTML, CSS and Java Scripts is also supported. WebView is implemented as a subclass of View.

Another limited version is also available in form Html class. We can parse HTML-formatted Strings in TextView using Html.fromHtml().

Comments