空指针异常Android onTouchListener onClickListener setText

时间:2013-02-06 01:26:34

标签: android

新编程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" />

3 个答案:

答案 0 :(得分: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,请确保您的布局(及其子视图)包含在名为activity_main.xml的xml文件中,并且您已清理了项目。

答案 1 :(得分:1)

而不是这句话

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

将其更改为

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

findViewById(android.R.id.content)表示您想要获取Activity

的内容视图

答案 2 :(得分: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);