且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在Libgdx Android应用程序没有声音

更新时间:2023-02-26 20:43:32

有时声音不打相同的帧就被加载,请等待一帧。或者打在另一个类。

参考:声音后,装载不打

I am creating an Android App with Libgdx. The sound works pretty well, if I run the program in the desktop-version and on the emulator as well.

When I am testing the application on my android phone (Galaxy S3) there is no sound. Everything else works pretty fine on my device except the sound which is completely is missing. Do anyone know what the issue here could be?

Ask me for code or logs I’d like to post it for you!

Regards

The following example shows the way i play the sound:

import com.badlogic.gdx.audio.Sound;

public class LevelDesigner {

    public LevelDesigner() {

    Sound mp3Sound = Gdx.audio.newSound(Gdx.files.internal("data/sounds/sound.mp3"));
    mp3Sound.loop();
    }
}

Sometimes the sound doesn't play the same frame it was loaded, try waiting one frame. Or playing it in another class.

Reference: Sound not playing after Loading