コード例 #1
0
ファイル: Sound.java プロジェクト: najunhee/propose-lib
  public void play(int raw_id, boolean loop) {
    int intLoop = 0;
    if (loop) {
      intLoop = -1;
    }
    SoundInfo sInfo = soundMap.get(raw_id);
    try {
      int streamId = soundPool.play(sInfo.getSoundId(), 1.0f, 1.0f, 10, intLoop, 1);
      sInfo.setStreamId(streamId);
    } catch (Exception e) {

    }
  }