i create a list of my song with CustomArrayAdapter and placed it into MainActivity .
MediaPlayer and SeekBar are in MainActivity .
i want to send music number from my CustomArrayAdapter to MainActivity and play it but when i use Intent , new MainActivity is creating again .
i want to send data to it without create Activity again .
how can i do this ???
thanks
If you use
Intent
and pass your data it will create new activity, what you can do is create an interface in your adapter as follows.When you initialize your
CustomAdapter
in activity, pass an instance of this interface. Which will look like this :Finally, whenever you want your activity to know that song has changed, call
getSongNumber()
this method. You can do it like this,In the CustomAdapters constructor you are getting instance of interface so,
Declare a global variable :
Also add this line in the constructor,
And calling method goes like this,