I'm trying to randomly change the volume of the media player (mp) every 2 seconds:
while (mp.isPlaying()) {
float x = (float) Math.random();
float y = (float) Math.random();
setInterval((mp.setVolume(x,y)),2000);}
"The method setInterval is undefined for the type MainActivity"
How do I solve this???