4

行内の何かを変更するには、次の 2 つの方法があるようですListView

  1. setViewBinder/の使用setViewValue:

    myCursor.setViewBinder(新しい SimpleCursorAdapter.ViewBinder() {

      @Override
      public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
        int viewId = view.getId();
        switch(viewId) {
        case R.id.icon:
            // change something related to the icon here
    
  2. getView/の使用LayoutInflater:

    public View getView(int 位置、View convertView、ViewGroup 親) {

        View itemView = null;
    
        if (convertView == null) {
            LayoutInflater inflater = (LayoutInflater) parent.getContext()
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            itemView = inflater.inflate(R.layout.list_row, null);
        } else {
            itemView = convertView;
        }
    
        ImageView imgViewChecked = (ImageView) itemView
                .findViewById(R.id.icon);
        // change something related to the icon here
    

これら2つのアプローチの違いは何ですか?

4

1 に答える 1

4

両方を使用して同じタスクを実行できます。ViewBinder システムは、作業を容易にするために SimpleCursorAdapter によって追加されるため、getView コード全体を記述する必要はありません。実際、SimpleCursorAdapter は、setViewValue メソッドを呼び出すことによって getView を実装するだけです (標準のボイラープレート エラー チェックとインフレと共に)。

Android ソース コードが SimpleCursorAdapter の getView に使用する実装を添付しました。

public View getView(int position, View convertView, ViewGroup parent) {
  if (!mDataValid) {
    throw new IllegalStateException(
        "this should only be called when the cursor is valid");
  }
  if (!mCursor.moveToPosition(position)) {
    throw new IllegalStateException("couldn't move cursor to position "
        + position);
  }
  View v;
  if (convertView == null) {
    v = newView(mContext, mCursor, parent);
  } else {
    v = convertView;
  }
  bindView(v, mContext, mCursor);
  return v;
}


public void bindView(View view, Context context, Cursor cursor) {
  final ViewBinder binder = mViewBinder;
  final int count = mTo.length;
  final int[] from = mFrom;
  final int[] to = mTo;

  for (int i = 0; i < count; i++) {
    final View v = view.findViewById(to[i]);
    if (v != null) {
      boolean bound = false;
      if (binder != null) {
        bound = binder.setViewValue(v, cursor, from[i]);
      }

      if (!bound) {
        String text = cursor.getString(from[i]);
        if (text == null) {
          text = "";
        }

        if (v instanceof TextView) {
          setViewText((TextView) v, text);
        } else if (v instanceof ImageView) {
          setViewImage((ImageView) v, text);
        } else {
          throw new IllegalStateException(
              v.getClass().getName()
                  + " is not a "
                  + " view that can be bounds by this SimpleCursorAdapter");
        }
      }
    }
  }
}
于 2011-06-05T21:58:44.007 に答える