有人可以帮我查看一下这段代码并帮助我尝试显示来自其他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
答案 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");
或者进一步阅读你必须阅读本教程: -
答案 1 :(得分:0)
我邀请您再次阅读Android AsyncTask ...您在参数方面犯了错误。