私は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" />