Do I use the getCurrentPosition() method and determine where I want it to end and end it then with a for loop ?
Using java Syntax Highlighting
- MediaPlayer mp = MediaPlayer.create(MainActivity.this, R.raw.my_file);
- mp.seekto(Some_INT);
- mp.start();
- for(x = Some_INT + 2;x == mp.getCurrentPosition();;)
- mp.stop();
Parsed in 0.032 seconds, using GeSHi 1.0.8.4
I just typed that up real quick to get this question out there. I have no idea if it will compile or not. Just wondering about the overall problem, not the syntax.

