【发布时间】:2014-03-19 06:48:44
【问题描述】:
我从 Web 服务获取值并填充它textviews,并且我还在一些值上设置标签,因为我必须通过单击按钮将这些值发送到其他活动。但我只得到一个数组的最后一个值。
txt_TransStatus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
TextView cr = (TextView) child.findViewById(R.id.txt_StatusValue);
TextView pid = (TextView) child.findViewById(R.id.txt_DateValue);
TextView amount = (TextView) child.findViewById(R.id.txt_RechargeAmountValue);
TextView phone = (TextView) child.findViewById(R.id.txt_PhoneValue);
TextView pin = (TextView) child.findViewById(R.id.txt_PinNumberValue);
Intent intent = new Intent(con, GetTransData.class);
intent.putExtra("CRID", cr.getTag().toString());
intent.putExtra("PID", pid.getTag().toString());
intent.putExtra("Amount", amount.getTag().toString());
intent.putExtra("Phone", phone.getTag().toString());
intent.putExtra("PINNum", pin.getTag().toString());
con.startActivity(intent);
}
});
【问题讨论】: