If I were to use, for different purposes, all four events (down, up, click, long-click) with a button AND use a single event handling routine, how do I distinguish between the four events (I'm thinking of something along the lines of "Activity.Action_Down", etc.)? Thanks.
For the current project, I don't need the touch event (at least not as the UI is currently constructed). Can you provide a link to an example of using the parameter to distinguish between down, up, click, etc. Right now I have separate event handlers for each of these. Because a significant amount of the processing is quite similar, I'd like to make it more elegant and smaller. There are numerous buttons. Also, other than using the Tag property, is there a way to determine which button has been "activated"? Thanks.