@Override
    public void bindView(View view, Context context, Cursor cursor) {
      Legislator legislator = Database.loadLegislator(cursor);

      TextView name = (TextView) view.findViewById(R.id.name);
      name.setText(nameFor(legislator));
      TextView position = (TextView) view.findViewById(R.id.position);
      position.setText(positionFor(legislator));

      ImageView photo = (ImageView) view.findViewById(R.id.photo);
      LegislatorImage.setImageView(
          legislator.bioguide_id, LegislatorImage.PIC_LARGE, context, photo);

      view.setTag(legislator);
    }