Lines Matching refs:mSoundIDs
132 private final int[] mSoundIDs;
144 mSoundIDs = new int[SOUND_RES.length];
147 mSoundIDs[i] = mSoundPool.load(mContext, SOUND_RES[i], 1);
168 if (mSoundIDs[index] == ID_NOT_LOADED) {
170 mSoundIDs[index] = mSoundPool.load(mContext, SOUND_RES[index], 1);
171 mSoundIDToPlay = mSoundIDs[index];
174 mSoundIDToPlay = mSoundIDs[index];
176 mSoundPool.play(mSoundIDs[index], 1f, 1f, 0, 0, 1f);
184 for (int i = 0; i < mSoundIDs.length; i++ ) {
185 if (mSoundIDs[i] == soundID) {
186 mSoundIDs[i] = ID_NOT_LOADED;
193 for (int i = 0; i < mSoundIDs.length; i++ ) {
194 if (mSoundIDs[i] == soundID) {