我想知道是否有人可以帮忙解决这个问题,好吗?
下面的代码是ListView适配器,可以使单个itemView一切正常。 我可以使用此适配器显示条形码编号和条形码阅读器在listView中读取的项目的时间。
我的问题是如何为每个项目添加一个单选按钮?
public View getView(int position, View convertView, ViewGroup parent) {
inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Map<String, Object> result = arrayc.get(position);
TextView txttime;
TextView txtbarcode;
View itemView = inflater.inflate(R.layout.bay_items, parent, false);
txtbarcode = (TextView) itemView.findViewById(R.id.barcodelbl);
txtbarcode.setTextColor(Color.BLUE);
txttime = (TextView) itemView.findViewById(R.id.timelabel);
txttime.setTextColor(Color.BLUE);
if (result.get("warehouse").toString().equals("1")) {
View warehouse = itemView.findViewById(R.id.bayscan);
warehouse.setBackgroundColor(Color.YELLOW);
}
if (result.get("unknown").toString().equals("1")) {
View warehouse = itemView.findViewById(R.id.bayscan);
warehouse.setBackgroundColor(Color.RED);
txtbarcode.setTextColor(Color.WHITE);
txttime.setTextColor(Color.WHITE);
}
txtbarcode.setText(result.get("barcode").toString());
txttime.setText(result.get("time").toString());
return itemView;
}
答案 0 :(得分:1)
我不确定我是否正确理解了您的问题,但正如您所描述的那样,我认为您需要做的就是找到R.layout.bay_items xml文件并在那里添加一个Radion按钮。虽然添加一个单选按钮没有多大意义,但也许你的意思是复选框或类似的东西。