-1

http://pastebin.com/2vhnNJpA

有人可以帮我看看这段代码并帮助我尝试显示来自另一个人的数据吗class

TextView tv = (TextView)findViewById(R.id.bill_periodFrom);
tv.setText(itemisedbill.getperiodFrom());
tv = (TextView)findViewById(R.id.bill_periodTo);
tv.setText(itemisedbill.getperiodTo());
tv = (TextView)findViewById(R.id.bill_cost);
tv.setText(itemisedbill.getcost());
tv = (TextView)findViewById(R.id.bill_amountUsed);
tv.setText(itemisedbill.getamountUsed());

这是我遇到问题的代码的一小部分,eclipse 说 itemisedbill 为 null

4

2 回答 2

0

第一活动

Intent i = new Intent(A.this, B.class);
i.putExtra("numbers", "number");
startActivity(i);

第二活动

//in oncreate method
String number= getIntent().getStringExtra("numbers");

或进一步阅读你必须阅读本教程: -

http://www.vogella.com/articles/AndroidIntent/article.html

于 2013-03-12T13:23:13.973 回答
0

我邀请您再次阅读Android AsyncTask ...您在参数方面犯了错误。

于 2013-03-12T13:25:19.293 回答