0

Androidアプリのプログラミングが初めてで、ヌルポインター例外が発生し続け、その理由がわかりません。私はこれを少し調べましたが、ほとんどの人は setContentView が原因でこれを取得しているようですが、他の人が言っていることから、私の setContentView は適切なスペースにあるなどのようです...

int randInt;
int[] randColor = {Color.RED,Color.BLUE,Color.GREEN,Color.YELLOW,Color.BLACK,
                Color.CYAN,Color.MAGENTA,Color.LTGRAY,Color.DKGRAY,Color.WHITE};
TextView textView1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final Button button1 = (Button) findViewById(R.id.button1);
    button1.setOnClickListener(this);
    View layout = findViewById(R.layout.activity_main);
    layout.setOnTouchListener(this);
    textView1 = (TextView) findViewById(R.id.textView1);
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

@Override
    public void onClick(View v) {
        setBackGroundColor(randInt);
    }

@Override
public boolean onTouch(View v, MotionEvent e){
    float xPos = e.getX();
    float yPos = e.getY();
    changeText(xPos,yPos);
    return true;
}

public void setBackGroundColor(int randInt){
    getWindow().setBackgroundDrawable(new ColorDrawable(randColor[getRandomInt()]));
}

public int getRandomInt(){
        Random randomInt = new Random();
        randInt = randomInt.nextInt(10);
        return randInt;
}

public void changeText(float xPos, float yPos){
    textView1.setText("You are at " + xPos + " , " + yPos);
}

}

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="66dp"
    android:text="@string/button" />

4

3 に答える 3

1

レイアウトに ID を割り当てます。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" 
android:id="@+id/my_layout">

次に、コードを次のように変更します。

View layout = findViewById(R.id.my_layout);

findViewByID()メソッド名が示すように、ID が必要です。レイアウトを渡すと int渡されるため、正常にコンパイルされますが、id と一致する可能性は低く、メソッドは を返しますnull

他のものも null を返す場合は、レイアウト (およびその子ビュー) が呼び出された xml ファイルに含まれてactivity_main.xmlいること、およびプロジェクトをクリーンアップしたことを確認してください。

于 2013-02-06T01:29:50.507 に答える
1

この声明の代わりに

View layout = findViewById(R.layout.activity_main);

に変更します

View layout = findViewById(android.R.id.content);

findViewById(android.R.id.content)のコンテンツビューを取得することを意味しますActivity

于 2013-02-06T01:34:55.570 に答える
0

setContentView 行を次のように置き換えます。

LayoutInflater inflater = LayoutInflater.from(this);
View view = (View) inflater.inflate(R.layout.activity_main); // can't remember if casting is necessary here
setContentView(view);
于 2013-02-06T01:35:22.780 に答える