2

我想开发具有搜索功能的音频播放器。现在我只做播放和停止功能。如何向它添加搜索功能?

提前致谢

4

3 回答 3

1

利用:mediaPlayer.seekTo(int msec)

于 2011-05-31T09:46:39.823 回答
0
    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();
于 2011-06-03T10:39:59.660 回答
0
<?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
于 2011-06-03T10:43:36.943 回答