使用mediaplayer类播放多首歌曲(for循环)

时间:2019-02-28 10:37:42

标签: android

  mpintro= new MediaPlayer();
                for(int i=2;i<results.size();i++){
                    if(results.get(i).equals(emotion[position])){
                        try {
                            mpintro.setDataSource(retmus.get(i));
                            mpintro.start();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }

                    }
                }

我想使用mediaplayer类播放完整的歌曲列表,该类可以通过for循环索引。它没有显示任何错误,但是也没有播放。

0 个答案:

没有答案