SeekBar.setProgress()

SeekBar.setProgress() was added in API Level 1
Set the current progress to the specified value. Does not do anything if the progress bar is in indeterminate mode. Parameters: progress the new progress, between 0 and getMax()

1. Find a SeekBar using ID

2. Declare and Initialize an integer named intCurrentPosition, set to 1000.

3. Seekbar.setMax

4. In the MainActivity.java file, add the following to the onCreate method.

 mySeekBar.setProgress(intCurrentPosition);

5. Compile and run!

Resources:
http://developer.android.com/reference/android/widget/ProgressBar.html#setProgress(int)
http://united-coders.com/nico-heid/an-android-seekbar-for-your-mediaplayer/
http://stackoverflow.com/questions/16163431/android-mediaplayer-audio-seekbar