1
I am developing a browser for android with java. It works fully through webviews. But the app is not able to play videos via stream... I wonder if it is possible to do it. Thank you.
Webview in xml:
<WebView android:layout_height="match_parent"android:layout_width="match_parent" android:id="@+id/wv" />
Code in Java:
WebView wv = (WebView)findViewById(R.id.wv);
wv.setWebViewClient(new WebViewClient());
wv.setJavaScriptEnabled(true);
wv.loadUrl("https://example.com");
Take a look if it helps: https://stackoverflow.com/questions/10309353/android-webview-not-playing-video
– rbz
It worked out! Thank you!
– Bandicoot_