Show whatsapp web in my webview I want to show whatsapp website in my webview. I have used a user agent bu...">

<pre class = "prettyprint-override"> Show whatsapp web in my webview

I want to show whatsapp website in my webview. I have used a user agent but I still cannot open it.
Please help to show whatsapp website in my webview.
This is my code: What should I do? I'm new. thank
myWebView.getSettings().setJavaScriptEnabled(true);
String agent = "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.121 Safari/537.36";
myWebView.getSettings().setUserAgentString(agent);



+3


source to share


1 answer


I checked the logcat and I saw errors like

cannot call definevisibility () - never seen a connection for pid

I fixed the problem by adding:



simpleWebView.getSettings().setDomStorageEnabled(true);

      

to the code and the webview works.

0


source







All Articles