-1
我用ListView和ActionBarSharlock(ABS)編寫了一個簡單的應用程序。我有我的對象,自定義ArrayAdapter,在我的ABS我有SearchView和下拉列表,現在關於我的問題,如果我在排序所有工作正常之前搜索的東西,但「搜索」後排序功能被打破。搜索後分類錯誤
public boolean onNavigationItemSelected(int position, long itemId) {
switch (position) {
case 0:
countryArrayAdapter.sort(new SortByAZ());
break;
case 1:
...................
SearchView.OnQueryTextListener queryTextListener = new SearchView.OnQueryTextListener() {
public boolean onQueryTextChange(String newText) {
countryArrayAdapter.getFilter().filter(newText);
return true;
}
我做錯了什麼?