I need to post data to Webview. I found from some of the links the below code:
WebView webview = new WebView(this); setContentView(webview); String u
This is a simple workaround.
String html = "" + "" + "" + "" + " " + " " + "" + "" + ""; webview.loadData(html, "text/html", "UTF-8");
I know this is not the best method but this works.