Android studio:发生错误

时间:2015-09-03 12:08:11

标签: java android xml

我正在编写Android应用程序的编程。但是一旦我想在我的模拟器中测试我的应用程序,我就会立即收到错误。

这是我的代码。

public class MainActivity extends Activity implements View.OnClickListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.activity_main);

    Button toPech = (Button)findViewById(R.id.toPech);
    toPech.setOnClickListener(this);
    ImageButton toInfo = (ImageButton)findViewById(R.id.toInfo);
    toInfo.setOnClickListener(this);
    //this button is not in the same layoutactivity as the other 2.
    ImageButton backPech = (ImageButton)findViewById(R.id.backPech);
    backPech.setOnClickListener(this);
}

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

@Override
public void onClick(View v) {
    switch(v.getId()) {
        case R.id.toPech:
            startActivity(new Intent(getApplicationContext(), LocationActivity.class));
            break;
        case R.id.toInfo:
            startActivity(new Intent(getApplicationContext(), InfoActivity.class));
            break;
        case R.id.backPech:
            startActivity(new Intent(getApplicationContext(), MainActivity.class));
            break;
    }
}

我想知道出了什么问题,以便我可以。

1 个答案:

答案 0 :(得分:0)

来自您的评论栏:

  

//此按钮与其他按钮的布局活动不同。

我认为您有 NullPointerException

虽然Button “backPech”不在activity_main.xml中,但调用findViewById(R.id.backPech);将返回null个对象({{1将是null)。

backPech调用到setOnClickListener(this);对象将导致NullPointerException。