In my app i have a Gallery with some images in it. When the user selects an image I want to somehow retrieve the id of the selected image.
The int that is returned by getId() is -1. Why am I not getting the system id for the image that was selected?
gallery.setOnItemClickListener(new OnItemClickListener() {
@SuppressWarnings("rawtypes")
@Override
public void onItemClick(AdapterView parent, View v, int position, long id) {
int imageId = v.getId();
}
});
Thanks!
use this
in adapter class add this function