gpt4 book ai didi

android - gettag() 仅获取数组的最后一个索引值

转载 作者:行者123 更新时间:2023-11-30 03:01:14 26 4
gpt4 key购买 nike

我从 Web 服务中获取值并将其填充到 textviews 中,我还在某些值上设置标签,因为我必须在单击按钮时将这些值发送到其他 Activity 。但我只得到数组的最后一个值。

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);
}
});

最佳答案

我用这个修复了我的代码:

OnClick 方法,将我的代码更改为

ImageView iv = (ImageView)v;
ProductURL = (String) iv.getTag();

关于android - gettag() 仅获取数组的最后一个索引值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22498369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com