大家好,最近开始练习写Android,但遇到一些问题,
还在做一些基本的功能,
正题: 我写了一个输入姓名与电话号码并显示出来的小程式,
code 大概如下(系统产生的就忽略不放)
public class MainActivity extends ActionBarActivity {
... ... ... ... ... ...
EditText sname, fname, phone;
TextView txv;
protected void onCreate(Bundle savedInstanceState) {
... ... ... ...
sname = (EditText)findViewById(R.id.surname);
fname = (EditText)findViewById(R.id.firstname);
phone = (EditText)findViewById(R.id.phone);
txv = (TextView)findViewById(R.id.txv);
}
... ... ... ... ...
public void onclick(View v){
txv.setText(sname.getText().toString() + fname.getText().toString() + "的
电话是" + phone.getText());
}
}
有点乱,但大概意思就是把变量在onCreate中初始化,然后在副程式中执行,
但是这样执行会错误,就当掉结束了,
不过若把变量初始化都放到副程式中,这样就可以运作,请问这是怎样的情形阿?
系统出现的错误讯息大概是:
java.lang.IllegalStateException: Could not execute method of the activity
(我不懂为啥不能执行耶)
Caused by: java.lang.reflect.InvocationTargetException
Caused by: java.lang.NullPointerException
大概这几行说明
在请各位大大指导一下!
我还在摸索Log.e这个东西,还不是很会用,因此想说先上来请教一下,感谢各位。