シーク機能を備えたオーディオプレーヤーを開発したい。現在、再生と停止の機能のみを実行しています。シーク機能を追加するにはどうすればよいですか?
前もって感謝します
シーク機能を備えたオーディオプレーヤーを開発したい。現在、再生と停止の機能のみを実行しています。シーク機能を追加するにはどうすればよいですか?
前もって感謝します
使用する:mediaPlayer.seekTo(int msec)
<?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
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();