请帮忙,试图从另一个班级获取数据

时间:2013-03-12 13:17:20

标签: android xml

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 in null

2 个答案:

答案 0 :(得分:0)

<强> FirstActivity

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

<强> SecondActivty

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

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

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

答案 1 :(得分:0)

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