我有九个按钮,每个按钮都在 EditText 中输入一个数字,有点像计算器。我只是将其作为一个简单的项目进行,但我不断收到这些 NullPointerExeptions。如果我只使用预制的 onCreate() 方法运行它,它似乎可以工作,但是一旦我开始在类声明下声明变量,它就会引发一些异常。任何帮助表示赞赏。谢谢。
public class MainActivity extends Activity implements OnClickListener {
EditText display = (EditText)findViewById(R.id.numdisplay);
Button clearbtn = (Button)findViewById(R.id.clear);
Button ninenum = (Button)findViewById(R.id.nine);
Button eightnum = (Button)findViewById(R.id.eight);
Button sevennum = (Button)findViewById(R.id.seven);
Button sixnum = (Button)findViewById(R.id.six);
Button fivenum = (Button)findViewById(R.id.five);
Button fournum = (Button)findViewById(R.id.four);
Button threenum = (Button)findViewById(R.id.three);
Button twonum = (Button)findViewById(R.id.two);
Button onenum = (Button)findViewById(R.id.one);
Button enterbtn = (Button)findViewById(R.id.enter);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
onclicks(); //setting all the onclick listeners
}
public void onclicks() { //just setting onclick listeners, so it doesn't bloat up the oncreate method
clearbtn.setOnClickListener(this);
ninenum.setOnClickListener(this);
eightnum.setOnClickListener(this);
sevennum.setOnClickListener(this);
sixnum.setOnClickListener(this);
fivenum.setOnClickListener(this);
fournum.setOnClickListener(this);
threenum.setOnClickListener(this);
twonum.setOnClickListener(this);
onenum.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.main, menu);
return true;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch(v.getId()){
case R.id.clear: /** More switch cases will be put here*/
display.setText("");
break;
}
}
}