如何查找要在listview中设置的字符串中所有子字符串的出现

时间:2017-11-22 10:46:20

标签: java android

我无法获取每个索引的读取数据。因为我Toast fstr它显示最后一个索引值。可以解决我的问题

            String item=hello$123$gift@hii$150$teddy
            Model model=new Model();
            String[] item=foodItem.split("@");
            for (int i=0; i<item.length; i++){
                String[] perItem=item[i].split("\\$");
                String fstr = perItem[0];
                model.setFood(fstr);
                model.setPrice(perItem[1]);
                model.setQuantity(perItem[2]);
                dataModels.add(model);
            }
            adapter.notifyDataSetChanged();

1 个答案:

答案 0 :(得分:0)

根据你所说的标题, 如果要在拆分文本后将文本附加到单个文本视图中, 你可以这样做吗

创建单个文本视图

textview.setText(model.getFood()+ model.getPrice()+ model.getQuantity())