private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url)
Do you have the permission android.permission.INTERNET
enabled in AndroidManifest.xml? E.g.
Regarding one of the comments above, I haven't heard of WebViews requiring the ACCESS_NETWORK_STATE
permission, and have had them working without it, but perhaps the functionality is automatically used for something optional if available(?)