在我的应用中,我正在展示插页式广告。点击该广告我要在我的应用webview中打开该链接,而不是在浏览器中。我怎么能这样做?
答案 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.