我是学习Android的初学者,请帮助我。我不断收到此错误:
02-19 16:55:00.330: E/AndroidRuntime(2335): java.lang.RuntimeException: 无法启动活动 ComponentInfo{com.mkyong.android/com.mkyong.android.WebViewActivity}: java.lang.NullPointerException
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
WebView mywebview = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
WebSettings webSettings = mywebview.getSettings();
mywebview.loadUrl("http://www.google.com");
}
我的 xml 文件:
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />