8

私はアンドロイドの初心者です。

私のカスタム アダプタは、フィルタリング時に例外を引き起こします。

これが私のコードです。プライベート クラス DeptAdapter extends ArrayAdapter implement Filterable {

    private ArrayList<Dept> items;
    private ArrayList<Dept> mOriginalValues;

    public DeptAdapter(Context context, int textViewResourceId, ArrayList<Dept> items) {
            super(context, textViewResourceId, items);
            this.items = items;
    }
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;

        if (v == null) {
            LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.item_listview_2line, null);
        }
        Dept d = items.get(position);
        if (d != null) {
                TextView tt = (TextView) v.findViewById(R.id.toptext);
                TextView bt = (TextView) v.findViewById(R.id.bottomtext);
                if (tt != null){
                    tt.setText(d.dept_nm);                            
                }
                if(bt != null){
                    bt.setText(d.dept_cd);
                }
        }
        return v;
    }

    @Override
    public Filter getFilter() {
        Filter filter = new Filter() {

            @SuppressWarnings("unchecked")
            @Override
            protected void publishResults(CharSequence constraint,FilterResults results) {

                items = (ArrayList<Dept>) results.values; // has the filtered values
                if (results.count > 0) {
                    notifyDataSetChanged();
                } else {
                    notifyDataSetInvalidated();
                }
            }

            }
            @Override
            protected FilterResults performFiltering(CharSequence constraint) {
                FilterResults results = new FilterResults();        // Holds the results of a filtering operation in values
                ArrayList<Dept> FilteredArrList = new ArrayList<Dept>();

                if (mOriginalValues == null) {
                    mOriginalValues = new ArrayList<Dept>(items); // saves the original data in mOriginalValues
                }

                if (constraint == null || constraint.length() == 0) {

                    // set the Original result to return  
                    results.count = mOriginalValues.size();
                    results.values = mOriginalValues;
                } else {
                    constraint = constraint.toString().toLowerCase();
                    for (int i = 0; i < mOriginalValues.size(); i++) {
                        Dept d = mOriginalValues.get(i);
                        if (d.dept_cd.toLowerCase().startsWith(constraint.toString()) || d.dept_nm.toLowerCase().startsWith(constraint.toString())) {
                            FilteredArrList.add(d);
                        }
                    }
                    // set the Filtered result to return
                    results.count = FilteredArrList.size();
                    results.values = FilteredArrList;
                }
                return results;
            }
        };
        return filter;
    }
}

class Dept
{
    String dept_cd; 
    String dept_nm; 
    public Dept(String dept_cd, String dept_nm)
    {
        this.dept_cd = dept_cd;
        this.dept_nm = dept_nm;
    }
    public String toString()
    {
        return this.dept_nm+ "(" + this.dept_cd +")" ;
    }
}

誰か助けて.... getView() メソッドが items.size() よりも多く呼び出された理由がわかりません

4

4 に答える 4

15

getView()が持っているアイテムのサイズを照会することに注意してくださいsuperclass。これは、現在、スーパークラス コンストラクターを呼び出すときに最初に渡したものです。

super(context, textViewResourceId, items);

したがって、スーパークラスは、フィルター処理を行ったときにサイズが変更されたことを認識しません。これはgetCount()、配列の元のサイズを返すことを意味します。これは、フィルター処理された配列よりも当然大きいです。

これは、getCount()メソッドをオーバーライドして、実際の有効なサイズを確実に返す必要があることを意味します。

@Override
public int getCount()
{
   return items.size();
}

List 操作に関連する他のメソッド (get など) を使用する場合は、これらのメソッドもオーバーライドする必要があります。例えば:

@Override
public Dept getItem (int pos){
     return items.get(pos);
}
于 2013-03-04T05:02:27.943 に答える
0
 private ArrayList<Dept> items;
    private ArrayList<Dept> mOriginalValues;

    public DeptAdapter(Context context, int textViewResourceId, ArrayList<Dept> items) {
            super(context, textViewResourceId, items);
            this.items = items;
            this.mOriginalValues=items;  //add this line in your code
    }
于 2013-03-04T05:16:17.983 に答える
0

getCount()メソッドがありません。このデモを見てください

お役に立てば幸いです!

于 2013-03-04T05:05:41.703 に答える