3

我有一个奇怪的问题。我有一个正在排序的 ArrayAdapter。这在我的屏幕上正确显示,但是当我检查实际数据源时,内容尚未排序。如何确保对我的 ListAdapter 进行排序也会对我的数据源进行排序?

Collections.sort(quotes, new PercentChangeComparator()); //sort my data source (this isn't necessary)
quotesAdapter.sort(new PercentChangeComparator()); //sort my ListAdapter
Toast toast = Toast.makeText(getApplicationContext(),quotes.get(0).getSymbol(), Toast.LENGTH_SHORT);
toast.show(); //this shows that my data source hasn't been updated, even though my ListAdapter presents my ListView in the correctly sorted order.

例如:如果我的数据源是[10,9,1,20]

排序后我的 ListView 将显示[1,9,10,20]

但数据源仍将是[10,9,1,20]

我该如何解决这个问题?

4

1 回答 1

4

反过来说:对数据源进行排序将对 ArrayAdapter 进行排序。

我假设你以前做过这样的事情。

ArrayList<PercentChangeComparator> quotes = getQuotesFromSomewhere();
QuotesAdapter quotesAdapter = new QuotesAdapter(this, R.layout.xxx, quotes);

然后,如果您对引号进行排序,则通知适配器数据集已更改应该对列表进行排序

Collections.sort(quotes, new PercentChangeComparator());
quotesAdapter.notifyDataSetChanged();

这对我有用,我希望它有所帮助。

一件重要的事情:如果您重新创建源数组(此特定示例中的引号),适配器将不会读取进一步的更改。因此,如果您需要修改 ListView 的内容,请执行以下操作:

quotes.clear();
quotes.add(...);
quotes.add(...);

此外,请确保您正确实施了比较器。如果你执行这个

Collections.sort(quotes, new PercentChangeComparator());

并且引号没有排序,那么问题与适配器无关,而是与比较有关。

于 2010-09-14T09:38:08.377 回答