1

I am using a webview to connect to an ip camera. It works when I need snapshots , but i get a white screen when I try to get videostreams. I tried .getPlugins as well. What could be the possible reason?

mWebView = (WebView) findViewById(R.id.webView1);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://<ipaddress>/videostream.cgi?user=&pwd=");
Girish Koundinya
  • 143
  • 3
  • 12

1 Answers1

0

you can call Browser activity and set specific URL by intent. Take a look here: Sending an Intent to browser to open specific URL

Community
  • 1
  • 1
Tai Tran
  • 1,406
  • 3
  • 15
  • 27