I have a custom View class that extends Spinner. I\'m trying to figure out what the correct way to talk to the Activity that it\'s embedded in is, when the user makes a sel
A simple solution -
((ParentClass) context).functionToRun();
Where ParentClass is the class name of the activity.