我有一个ArrayList,从onClick的几个按钮填充。我正在试图弄清楚如何让我的ArrayList将项目组合成一个项目。用户按下按钮一次,并在列表中填充“1 whatever”。如果他们再次按下相同的按钮,它会在列表中再次说“1 what”,然后再说“1 whatever”。如果按下按钮两次,如何让我的列表显示“2什么”?
ArrayList<String> listItems=new ArrayList<String>();
ArrayAdapter<String> adapter;
//Regular List
adapter=new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1,listItems);
setListAdapter(adapter);
//List From Another Activity
ArrayList<String> ai= new ArrayList<String>();
ai = getIntent().getExtras().getStringArrayList("list");
if (ai != null) {
listItems.add(ai+"");
adapter.notifyDataSetChanged();
}
//When the User pushes this button
//StackOverFlow help, Ignore this part if it's useless...wasnt sure
lay1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
listItems.add("1 "+stringm1a+" - "+intm1aa );
adapter.notifyDataSetChanged();
overallTotalproduct = intm1aa + overallTotalproduct;
textViewtotalproduct.setText(String.valueOf(overallTotalproduct));
}
});
答案 0 :(得分:1)
我强烈建议从项目名称中分离项目计数,而不是将这两个值存储在字符串中,并使用您自己的自定义对象适配器。它比使用Strings容易得多。
但是,我认为这应该有效:
String item = "1 Whatever";
// If the list contains this String
if (listItems.contains(item)) {
String[] words = item.split(" "); // Split the count and name
int count = Integer.parseInt(words[0]); // Parse the count into an int
count++; // Increment it
listItems.remove(item); // Remove the original item
listItems.add(count + " " + words[1]); // Add the new count + name eg "2 Whatever"
}
缺点是这不会保留您的列表顺序,但您可以随时使用Collections.sort()
对其进行排序。
答案 1 :(得分:1)
如果我理解正确你有一个ArrayList,你可以在其中添加几个按钮被点击的项目,如果同一个按钮被点击两次或更多,你不想添加项目,但增加列表中的项目数。 / p>
要解决此问题,您可以定义一个Item类,它具有可用于的类成员String 识别项目和计数以跟踪点击次数
class Item
{
String str;
int count;
}
然后在每个Button上定义String,在向ArrayList添加元素之前,如果List中已经存在则搜索String,如果找到String则增加计数