0
我有以下活動將連接到網頁。由於「無法連接到服務器錯誤」,網頁將無法加載
該活動的作品,但它永遠不會連接到一個網頁,無論它是什麼網站,我不斷收到相同的消息。
任何人都可以看到任何代碼錯誤?
下面是代碼:
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,
}
}
我知道它只是這麼小!非常感謝 :) – 2013-04-30 15:40:45