当前位置: 代码迷 >> Android >> andriod 使用webview有关问题
  详细解决方案

andriod 使用webview有关问题

热度:144   发布时间:2016-05-01 10:44:15.0
andriod 使用webview问题
我在服务器里写了如下跳转语句

if($regist == true)
    {
        ?><script>alert("Regist Success");</script><?
        ?><script>setTimeout('window.location="index.php"', 50);</script><?
    }


现在在andriod客户端上使用webview访问服务器,并做相关操作,执行上面的语句,但是提示使用系统自带的浏览器,我想直接在webview里返回,这个怎么解决啊

------解决方案--------------------

webViewContent.setWebViewClient(new WebViewClient(){//在当前界面中处理跳转   
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
             view.loadUrl(AddDeviceIdUtils.addDeviceIdToURL(url));
                return true;       
            }       
});