OK... so I looked at your posts again. and I looked at the nice page
again. I was able to get rid of the red squiggily lines. The code
looks like this...
mWebView.loadUrl("http://photics.com/games/conquest");
mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
mWebView.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
if (url.contains("http://photics.com")) {
return false;
}else{
Intent viewIntent = new
Intent("android.intent.action.VIEW", Uri.parse(url));
startActivity(viewIntent);
return true; }
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---