I want to develope audio player that has seek functionality. Right now I am doing only play and stop functionality. How can I add seek to functionality to it?

Thanks in advance

link|improve this question

71% accept rate
feedback

3 Answers

Use: mediaPlayer.seekTo(int msec)

link|improve this answer
feedback
up vote 0 down vote accepted
    setContentView(R.layout.playingactivity);
    Toast.LENGTH_LONG).show();
    mPath = (EditText) findViewById(R.id.path);
    mPath.setText(GlobalVariable.getstrEmail());
    mVideoView = (VideoView) findViewById(R.id.surface_view);
    Uri uri = Uri.parse("/sdcard/download/test.mp3");   
    mediaController = new MediaController(this);
    mediaController.show(0);    
    mediaController.setAnchorView(mVideoView);
    mVideoView.setMediaController(mediaController);
    mVideoView.setVideoURI(uri);
    mVideoView.start();
link|improve this answer
feedback
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"   >
<VideoView android:id="@+id/surface_view"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent">
</VideoView></LinearLayout
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.