1. 首页
  2. 数据库
  3. 其它
  4. Android录音播放管理工具

Android录音播放管理工具

上传者: 2021-01-16 07:22:25上传 PDF文件 70.86KB 热度 9次
1、语音播放直接用系统工具就好了,这个就不多说了,根据传入的路径(网络路径或本地路径均可)播放音频文件 /** * Created by zhb on 2017/1/16. * 音乐在线播放 */ public class PlayManager { private Context mcontext; public PlayManager(Context context){ this.mcontext = context; } public void play(String song){ MediaPlayer mp = new MediaPlayer(); try
用户评论