gpt4 book ai didi

java - Android 适配器notifyDataSetChanged 仅在加载时起作用(第二个适配器)

转载 作者:太空宇宙 更新时间:2023-11-04 11:55:48 25 4
gpt4 key购买 nike

我的适配器没有什么问题。将新内容添加到列表并使用 notifyDataSetChanged 刷新后,onClickListener 不适用于该新项目。在我单击“返回”并返回到添加菜单后,该项目工作正常。

所以加载部分工作完美。

第一个带有列表的适配器工作得很好。其代码几乎相同。

onCreate函数中...

Button addContent = (Button)findViewById(R.id.addContent_button);
final ListView myList = (ListView)findViewById(R.id.mainMenuList);
final boolean deleteMode = false;
String[] liegenSchaften = new String[] {};
final List<String> content = new ArrayList<String>(Arrays.asList(liegenSchaften));
final ArrayAdapter adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, content);

myList.setAdapter(adapter);

//load the Save Data
Map<String, ?> map = getSaveMap();

//add exists data to list
for (Map.Entry<String, ?> entry : map.entrySet()) {
content.add(entry.getValue().toString());
}

// Update adapter, this works fine!
adapter.notifyDataSetChanged();

addContent.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
content.add(editedText.getText().toString());
/* This adapter dont Update the new Content, the item display and is not clickeble */
adapter.notifyDataSetChanged();

editor.putString(editedText.getText().toString(), editedText.getText().toString());
editor.commit();
}
});

myList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
//load the Save Data
Map<String, ?> map = getSaveMap();

Object obj = myList.getAdapter().getItem(position);
String value = obj.toString();

//add exists data to list
for (Map.Entry<String, ?> entry : map.entrySet()) {
if(entry.getValue().toString() == value) {
if(deleteMode) {
editor.remove(value);
editor.commit();

content.remove(position);
adapter.notifyDataSetChanged();
} else {
selectedContent = entry.getValue().toString();
addMessage.setText(entry.getValue().toString() + " Wurde gewählt.");
addMessage.show();
}
}
}
}
});

最佳答案

我发现了问题:

查询错误。现在我已经使用了 equals 并且 ArrayAdapter 工作得很好!

 if(entry.getValue().toString().equals(value))

关于java - Android 适配器notifyDataSetChanged 仅在加载时起作用(第二个适配器),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41411106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com