Maybe I’m just going about this the wrong way, but I’m trying to have a function called playSong, and depending on the button pressed, I want to pass the parameter via xml to the playSong function so it can choose the correct song by resource id.
Is there a better way to accomplish this or is the way that I’m trying possible?
When passing params inside your app, it’s better to send a object directly. Since sending xml/json or other text format need to parse.
In this situation, you can create a param class for Button and pass it to the playSong function. If you have to pass text or String, you can also take serialization to the object.