Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是初学者 android 程序员和 java 学习者。我有一个团队,我们一直在开发和谐测试应用程序。现在有一个问题,不能同时播放midi文件或wave文件。(超过两个文件)请编程高手~~
可以创建多个媒体播放器实例。创建两个不同的媒体播放器实例并同时播放它们。
这是使用媒体播放器播放波形文件的方法:
MediaPlayer mp = MediaPlayer.create(context, R.raw.sound_file_1); mp.start();