: 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());
: }
: }
因為你衍生的類別是ActionBarActivity
所以要用Fragment的做法
但畢竟你還是新手(跟我一樣 冏)
我建議你改成衍生 Activity 就好
不然就是在onclick方法裡面初始化了
ps1:衍生Activity後 可能會需要更改一些程式碼
PS2:你買的書應該是Android App 程式設計教本之無痛起步 (施威銘主編)
因為程式碼完全一模一樣XD