0

私はSimpleCursorAdapterを含むリストを持っています。このリストはarraylistで作成されています。問題は、「persoane.proprietar = = "no"という妥当性を持つ配列からの値のみをリストに追加したいということです。これは私のコードです詳細

    private class ImageAndTextAdapter extends SimpleCursorAdapter {
    private Context adContext;

    public int getCount() {
        persNu = persPropNu();
        return persNu;
    }

    public ImageAndTextAdapter(Context context, int layout, Cursor c,
            String[] from, int[] to) {
        super(context, layout, c, from, to);
        this.adContext = context;
    }

    public View getView(int pos, View inView, ViewGroup parent) {
        View v = inView;
        if (v == null) {
            LayoutInflater inflater = (LayoutInflater) adContext
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = inflater.inflate(R.layout.element_lista_items, null);
        }
 if (GetObiecte.persoane.get(pos).proprietar.equals("no"))//if put this line in the list will be a blank line if the propriety isn't no,and I don't need it
        ((TextView) v.findViewById(R.id.textListTopElem)).setText(GetObiecte.persoane.get (pos).nume);
        ((TextView) v.findViewById(R.id.textListElem)).setText(GetObiecte.persoane.get (pos).judet);
        if (GetObiecte.persoane.get(pos).tipPersoana.equals("fizica")){((ImageView) v.findViewById(R.id.imgListElem)).setImageResource(R.drawable.icon_foto_person);}
        else {((ImageView) v.findViewById(R.id.imgListElem)).setImageResource(R.drawable.icon_foto_person_pj);}
        return v;
    }
}
4

1 に答える 1

0

この値が動的に変更されない場合は、関連するアイテムのみがアダプターに送信されます。

動的に変更される場合は、この質問で説明されているようなフィルターを使用できます

于 2012-12-18T12:56:26.173 に答える