Is audio working in the android backend of playn?
I recently tried a demo I made, and it didn't play any sound.
This is happening just in the android backend, html and java are playing the sounds just fine.
I'm using mp3 files.
Is audio working in the android backend of playn?
I recently tried a demo I made, and it didn't play any sound.
This is happening just in the android backend, html and java are playing the sounds just fine.
I'm using mp3 files.
是的。在我的 Android 案例中听起来不错,但在 Java 中不起作用 - 悖论。
我的代码:
soundTest = assetManager().getSound("sounds/test");
soundTest.setLooping(true);
soundTest.play();
我在路径中有音频文件:
.../resources/test.mp3
.../resources/test.wav
检查您是否没有将 .mp3 od .wav 添加到 getSound 方法。检查子文件夹 /resources/ 中是否有未在 getSound 方法中写入的文件。