0
: 나는 두 번 gPlaySound() 메소드를 호출하면Infinite soundPool을 두 번 시작한 후 stop() 함수가 작동하지 않습니다. 왜죠? 다음 코드를
protected void gPlaySound(){
globalSoundPool.play(globalSoundIDCoin,gVolume,gVolume,1,-1, (float) 0.5);
}
public void gStop() {
globalSoundPool.stop(globalSoundIDCoin);
}
, 중지() 메소드가 작동을 멈췄다. 왜?