I have an ImageView which already has an event listener which causes the image to zoom.
However, I also have a zoom button, and rather than re-implement my zooming method, I'd like to just programmatically dispatch a double-tap event to the imageview. However, I can't seem to find any useful resources for crafting and dispatching events.
How can I dispatch events programmatically to views?