通過點擊一些按鈕來生產一個 ArrayList。我想知道如何獲取 ArrayList 來把items整合到一個item中。用戶點擊一次按鈕,"1 whatever" 就會填充在list中,如果用戶再次點擊相同的按鈕,"1 whatever"會再次出現在list中。如何讓按鈕點擊兩次時,讓list顯示 "2 whatever"?
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));
}
});
我建議你從 item name 中分離 item count,而不是在一個字符串中存儲兩個值,使用自定義的 Object adapter,要比使用字符串簡單。
String item = "1 Whatever";
// If the list contains this String
if (listItems.contains(item)) {
String[] words = item.split(" ");
int count = Integer.parseInt(words[0]);
count++;
listItems.remove(item);
listItems.add(count + " " + words[1]);
}
缺點是不能保存列表順序,但是你可以在任何修改後使用 Collections.sort()來排序。