由于“无法连接到服务器错误”,网页将无法加载

时间:2013-04-30 15:21:24

标签: android connection

我有以下活动将连接到网页。

活动有效,但无论网站是什么网站都无法连接到网页,我不断收到相同的消息。

有人能看到代码有什么问题吗?

以下是代码:

import android.app.Activity;
import android.os.Bundle;
import android.widget.Toast;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class WebActivity extends Activity {
     private WebView mWebview ; // Creates a webview

        @Override
        public void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);

            mWebview  = new WebView(this);

            mWebview.getSettings().setJavaScriptEnabled(true);//Enables javascript 

            final Activity activity = this;

            mWebview.setWebViewClient(new WebViewClient() {//Starts the web browser
                public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                    Toast.makeText(activity, description, Toast.LENGTH_SHORT).show();
                }
            });

            mWebview .loadUrl("http://www.google.com");//Sets what website will be opened.
            setContentView(mWebview );//Displays the website,

        }

}

1 个答案:

答案 0 :(得分:3)

请在Android Manifest文件中添加<uses-permission android:name="android.permission.INTERNET" />权限&amp;见。