I have webview android application and I play embed videos inside it. I can play This videos is fullscreen. I want to get video source link from it. I think that if i play this videos fullscreen. I can get source link of videos. Is it possible ?
So I am sure it is possible but i dont know how. because all links passes inside webchromeclient, WebViewClient, videoview or other class that i dont know. do you have any ideas ?
webView2.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return super.shouldOverrideUrlLoading(view, url);
}
}