I would like to have a Spinner updated upon an onTap event in my overlay items.
What is the best practice in this situation? Should I pass the Spinner to the overlay items? The method to update the Spinner is currently in the MapActivity, is there a way to invoke it from the onTap event?
Thanks
I did a similar thing, and I ended up passing the Spinner to my
Overlayin the constructor. Then you can update the array adapter of theSpinnerinside yourOverlaycode. Hope it works!