I am developing a player app and I am using MediaPlayer for that.
Now, I want to change the speed of the playing track.
I\'ve seen so many apps with this fu
The MediaPlayer class doesn't give this functionality. Instead use the SoundPool class. It has a method called setRate (int streamID, float rate). Read this for further info. Here is a sample code for you to work with it.
MediaPlayer
SoundPool
setRate (int streamID, float rate)