插页式链接在webview中打开,而不是在浏览器中打开

时间:2018-05-22 05:57:58

标签: android webview admob android-webview

在我的应用中,我正在展示插页式广告。点击该广告我要在我的应用webview中打开该链接,而不是在浏览器中。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

you must set your clients.

webView.setWebChromeClient(new WebChromeClient());
webView.setWebViewClient(new WebViewClient());

you can also extend them and handle different things on your own.