java - Android WebView not showing data -
hi i'm developing android app uses webview. had working on froyo using:
webview.setwebviewclient(new webviewclient(){ @override public boolean shouldoverrideurlloading(webview view, string url) { if (uri.parse(url).gethost().equals(urlstring)) { // web site, not override; let webview load page return false; } // otherwise, link not page on site, launch activity handles urls intent intent = new intent(intent.action_view, uri.parse(url)); startactivity(intent); return true; } @override public void onreceivedsslerror (webview view, sslerrorhandler handler, sslerror error) { handler.proceed(); } });
for reason code doesn't hit when using froyo, white screen displayed. working fine week ago , have come make changes , doesn't work now. code doesn't hit when add breakpoint it. can suggest whats gone wrong? can add of code if help.
thanks
Comments
Post a Comment