我需要帮助获取单击项目时单击列表项目的次数。请帮我。如果列出项目被点击两次,我想得到该项目计数
console.log($.grep(ord,function(item){
return item.length>4;
}));
答案 0 :(得分:0)
// create a hashmap
HashMap<Integer ,Integer> hasmap=new HashMap<Integer, Integer>();
//并在listview onItemclick上检查
if (hasmap.containsKey(_id))
{
// increment the value if click on same listview item
int val = Integer.parseInt(hasmap.get(product_id));
value = val + 1;
hasmap.put(_id, value);
}
else
{
//
hasmap.put(_id, 1);
}