微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android音频播放器

如何解决android音频播放器

| 我想开发具有搜索功能的音频播放器。 现在,我只执行播放和停止功能。我怎么能够 向其添加查找功能吗? 提前致谢     

解决方法

        使用:
mediaPlayer.seekTo(int msec)
    ,        
    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();
    ,        
<?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
    

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。