0

嗨,任何人都知道在 listview 自定义 listview 时更新 listview 项目。我正在执行以下操作。

    View v = list.getChildAt(index - list.getFirstVisiblePosition());
    TextView someText = (TextView) v.findViewById(R.id.counttxt);
    int i = Integer.parseInt(data.get(index).get("Count"));
    i++;
    someText.setText(Integer.toString(i) + " count");

列表视图项目单击我需要增加计数和喜欢,与列表视图项目的选项不同,这也需要更新。在上面的代码文本视图中获取空值。如果有任何想法请帮助我提前感谢。

4

1 回答 1

0

您可以使用adapter.notifydatasetChanged(); 将新行数据添加到您array从中创建List和调用的

adapter.notifydatasetChanged();

它将List使用添加的数据创建一个新的

于 2013-06-14T05:32:03.427 回答