Re: [問題] 新手請教問題

作者: wa007123456 (大笨羊)   2014-06-23 16:34:01
: 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
作者: laiair (大頭)   2014-06-24 15:03:00
哈 我也有買這本,還OK
作者: chienchan (linting)   2014-06-25 12:27:00
哈哈,你真厲害!我後來也發現這問題了!所以都改成用Activity來做~原來大家都買這本阿XDD~

Links booklink

Contact Us: admin [ a t ] ucptt.com