I am following the gallery tutorial and I am trying to figure out how to change individual images in the gallery without recreating the gallery object. I dont want to recreate the gallery object because the images will be updated every few seconds, and when you start scrolling the gallery, then you create a new gallery object, the gallery position will return to the beginning, which is not what I want.
Does anyone know of a way to access each image in the gallery individually so I can update it?
you can use getChildAt api call and get the view of a particular position. Then you can change the data of the view the way you like it…if you require further information on the data that your view holds make sure that you tag the the required data to the view in bindView/getView call of the adapter associated with the gallery widget