程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> arraylist-在 ArryList 中合並項目

arraylist-在 ArryList 中合並項目

編輯:編程綜合問答
在 ArryList 中合並項目

通過點擊一些按鈕來生產一個 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()來排序。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved