0

我有一个带有布局 A 的 ListFragment,对于列表中的每个项目,我都有它的布局,也称为 B。在 BI 内部有一个 ID 为“imgVi”的图像视图:

<ImageView
    android:id="@+id/imgVi"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

从 onCreateView 方法中的 ListFragment 中,我想访问此 ImageView 以更改图像 src。我怎样才能做到这一点?。由于这个 imageView 不在 ListFragment 布局中,我不能这样做:

ImageView imgEmp = (ImageView) view.findViewById(R.id.imageViewEmp);
imgEmp.setBackgroundResource(R.drawable.ic_tab_emp_selected);

但是布局 B 在布局 A 中。因为它是一个包含行的列表。

任何帮助将不胜感激。我是安卓新手。

编辑:我得到它的工作,只需按照本教程http://thinkandroid.wordpress.com/2010/01/11/custom-cursoradapters/

public class ListClientsCursorAdapter extends SimpleCursorAdapter{

private Context context;
private int layout;

public ListClientsCursorAdapter(Context context, int layout, Cursor c,
        String[] from, int[] to, int flags) {

    super(context, layout, c, from, to, flags);

    this.context = context;
    this.layout = layout;
}

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {

    Cursor c = getCursor();

    final LayoutInflater inflater = LayoutInflater.from(context);
    View v = inflater.inflate(layout, parent, false);

    int nameCol = c.getColumnIndex("name");
    String name = c.getString(nombreCol);

    int telfCol = c.getColumnIndex("telf");
    String telf = c.getString(telfCol);

    /**
     * Next set the name of the entry.
     */    

    TextView name_text = (TextView) v.findViewById(R.id.textViewNombEmp);
    if (name_text != null) {
        name_text .setText(name);
    }

    TextView telf_text = (TextView) v.findViewById(R.id.textViewTelfEmp);
    if (telf_text != null) {
        telf_text.setText(telf);
    }

    ImageView imgEmp = (ImageView) v.findViewById(R.id.imageViewEmp);
    if (imgEmp != null) {
        imgEmp.setBackgroundResource(R.drawable.ic_tab_emp_selected);
    }

    return v;
}


}

然后在我调用的 ListFragment 的 onCreateView 中:

ListClientCursorAdapter notes = new ListClientCursorAdapter(context,R.layout.activity_fil_client, mCursor, from, to, 0);
setListAdapter(notes);

而不是 SimpleCursorAdapter。

4

1 回答 1

1

如果您有ListFragment,则必须为列表设置适配器。在该适配器内部,您可以覆盖 method getView(),并且可以访问ImageView那里,但不能从onCreateView片段内的方法访问它。

于 2013-05-09T07:46:19.137 回答