0

わかりましたので、何時間もこれに対する解決策を見つけようとしてきましたが、見つかりません。ログ猫がヌルポインターの期待値は次のとおりであると述べたコードを次に示します。

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class splash extends Activity{
Button begin;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    begin=(Button) findViewById(R.id.button);
    begin.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent startmenu=new Intent("com.life.project.menu");
            startActivity(startmenu);
        }
    });
}

}

xml ファイルは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:background="@drawable/icon3">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="You have 20 minutes to increase your status as much as possible." />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Begin!"
    android:layout_gravity="center"
    android:typeface="monospace" />

 </LinearLayout>

これを実行しようとすると、ヌルポインター例外が発生し、何が問題なのかわかりません。アイデアはありますか?

4

1 に答える 1

3

setContentView前に電話する必要がありますfindViewById:

setContentView(R.layout.the_layout_xml_name);
begin=(Button) findViewById(R.id.button);
// ...
于 2012-05-17T23:14:08.933 に答える