below is ImageAdapter that extends BaseAdapter. it contains code to set the image bitmap to the ImageView and setText method to set the text to the TextView. but I still need to bind both the TextView and the ImageView to the parent of the adapter. the actual gridView where each image and text will appear. how to do this? I am missing some things in my code.
image_item is the xml layout design for a single view in a listView or gridView. it contains one ImageView and one TextView. basically a jpeg image and below each image the title of the image that will appear.
public class ImageAdapter extends BaseAdapter {
private Context mContext;
public ImageAdapter(Context c) {
mContext = c;
}
public int getCount() {
return count;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.image_item, null);
} else {
view = convertView;
}
ImageView i = (ImageView) view.findViewById(R.id.adapterImageView);
i.setImageBitmap(bm); // bm = bitmap object
// bm is the bitmap returned by an intent get extras, that code not shown
TextView t = (TextView) view.findViewById(R.id.adapterTitleView);
t.setText("test text");
return view;
}
}
I still need to bind both the TextView and the ImageView to the parent of the adapterwhat do you mean ? also, count is not defined, bm is not defined. – njzk2 Oct 9 '12 at 7:33