0

簡単な質問があります。このリストにリストの最後の項目が表示されているのはなぜですか

任意の回答をお待ちしております...

    List<HashMap<String, Object>> noteItem=new ArrayList<HashMap<String,Object>>();

    HashMap<String,Object> hashmapNoteItem = new HashMap<String, Object>();

    hashmapNoteItem.put("todo_check", false);
    hashmapNoteItem.put("todo_content", "added 0"); 

    noteItem.add(hashmapNoteItem);

    HashMap<String,Object> hashmapNoteItem1 = new HashMap<String, Object>();
    hashmapNoteItem.put("todo_check", true);
    hashmapNoteItem.put("todo_content", "added 1"); 

    noteItem.add(hashmapNoteItem1);
4

2 に答える 2

0

あなたの質問が「なぜこのリストはリストの最後の項目を表示していない
のですか」の場合は、次の行 をnoteItem.add(hashmapNoteItem1);
追加してください:
yourAdapter.notifyDataSetChanged();

于 2013-11-01T17:09:25.270 に答える