3

この Stackoverflow answerでは、のメソッドをListViewオーバーライドせずにクラスで実装する代わりに、でフィルタリングを実行できることが示されています。getFilterArrayAdaptertoStringPOJO

実装してみましたが、フィルタリングが正しく機能しません。はListViewフィルター処理を行いますが、配列内の正しい項目は表示されません。したがって、たとえば、フィルタが の 1 つの行に一致する場合、array1 つのアイテムが に表示されますが、表示されるのListViewは間違ったアイテムです。このシナリオでは、入力した検索テキストに実際に一致する項目ではなく、配列の最初の項目が常に表示されます。

これが私のコードですArrayAdapter

public class TitleListingArrayAdapter extends ArrayAdapter<Title> {

    private List<Title> items;
    private Context context;

    public TitleListingArrayAdapter(Context context, int textViewResourceId, List<Title> items) {
        super(context, textViewResourceId, items);
        this.items = items;
        this.context = context;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) 
    {
        View view = convertView;
        if (view == null) {
            LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            view = inflater.inflate(R.layout.titlelisting_single_row, null);
        }
        Title item = items.get(position);
        if (item!= null) {
            TextView titleView = (TextView) view.findViewById(R.id.title);            
            if (titleView != null) {
                titleView.setText(item.getName());
            }
            TextView yearView = (TextView) view.findViewById(R.id.year);
            if (yearView != null) {
                yearView.setText(String.valueOf(item.getYear())+", ");
            }
            TextView genreView = (TextView) view.findViewById(R.id.genre);
            if (genreView != null) {
                genreView.setText(item.getGenre());
            }
            TextView authorView = (TextView) view.findViewById(R.id.author);
            if (authorView != null) {
                authorView.setText(item.getAuthor());
            }
            RatingBar ratingView = (RatingBar) view.findViewById(R.id.rating);
            if (ratingView != null) {
                ratingView.setRating(item.getRating());
            }
            ImageView iconView = (ImageView) view.findViewById(R.id.list_image);
            iconView.setImageResource(lookupResourceId(context, item.getID()));            
        }
        return view;
    }

    private int lookupResourceId(Context context, String id) {
        String resourceName =  "thumb_"+id;
        return context.getResources().getIdentifier(resourceName, "drawable", context.getPackageName());
    }
}

私のActivityコードの関連セクションは次のとおりです。

 @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.listing);
    databaseHandler = new DatabaseHandler(this);
    listView = (ListView) findViewById(R.id.list);
    List<Title> titles = databaseHandler.getAllTitles();
    adapter = new TitleListingArrayAdapter(this, R.id.list, titles);
    listView.setAdapter(adapter);
    filterText = (EditText) findViewById(R.id.filter);
    filterText.addTextChangedListener(filterTextWatcher);
}

private TextWatcher filterTextWatcher = new TextWatcher() {
    public void afterTextChanged(Editable s) {}
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        adapter.getFilter().filter(s.toString().toLowerCase());
    }
};

TitlePOJOクラスは toString を次のように実装します。

@Override
public String toString() {
    String name = this.getName() == null ? "" : this.getName().toLowerCase();
    String year = this.getYear() == null ? "" : this.getYear().toString();
    String genre = this.getGenre() == null ? "" : this.getGenre().toLowerCase();
    return name + " " +year+ " "+ genre;
}

フィルタリングが正しく機能しない理由と、それを修正する方法を知っている人はいますか?

4

1 に答える 1

6

次の質問は、私が遭遇したのとまったく同じ問題を扱っています。この質問は、フィルタリングが行っていることの例も示しており、リストに正しいアイテムを表示しないことで正しいアイテム数を示しています。

したがって、6回賛成されたにもかかわらず、この答えは間違っているようです。getFilterの方法を全く使わないことでこれを解決しましたArrayAdapterArrayAdapterむしろ、次のように、TextWatcherインスタンスで新しいものを作成します。

private TextWatcher filterTextWatcher = new TextWatcher() {
     public void afterTextChanged(Editable s) {}
     public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
     public void onTextChanged(CharSequence s, int start, int before, int count) {
         if (!s.toString().equals("")) {
              List<Title> filteredTitles = new ArrayList<Title>();
              for (int i=0; i<titles.size(); i++) {
                   if (titles.get(i).toString().contains(s)) {
                       filteredTitles.add(titles.get(i));                   
                   }            
              }
              adapter = new TitleListingArrayAdapter(TitleListingActivity.this, R.id.list, filteredTitles);
              listView.setAdapter(adapter);
         }
         else {
              adapter = new TitleListingArrayAdapter(TitleListingActivity.this, R.id.list, titles);
              listView.setAdapter(adapter);             
         }
    }
};

また、宣言List<Title> titlesをから移動し、クラスonCreateのメンバー変数にして、のメソッド内でアクセスできるようにしたことに注意してください。ActivityonTextChangedfilterTextWatcher

于 2013-02-23T21:36:35.957 に答える