While using WebView, we usually put a URL for it:
WebView.loadUrl(myURL);
but it is possible to put HTML code directly?? So that it will be in
Check out this: http://developer.android.com/reference/android/webkit/WebView.html
// OR, you can also load from an HTML string: String summary = "You scored 192 points."; webview.loadData(summary, "text/html", null);