HomeSort by relevance Sort by last modified time
    Searched refs:mSoundIDs (Results 1 - 2 of 2) sorted by null

  /packages/apps/Camera/src/com/android/camera/
SoundClips.java 117 private final int[] mSoundIDs;
131 mSoundIDs = new int[SOUND_RES.length];
134 mSoundIDs[i] = mSoundPool.load(mContext, SOUND_RES[i], 1);
155 if (mSoundIDs[index] == ID_NOT_LOADED) {
157 mSoundIDs[index] = mSoundPool.load(mContext, SOUND_RES[index], 1);
158 mSoundIDToPlay = mSoundIDs[index];
161 mSoundIDToPlay = mSoundIDs[index];
163 mSoundPool.play(mSoundIDs[index], 1f, 1f, 0, 0, 1f);
171 for (int i = 0; i < mSoundIDs.length; i++ ) {
172 if (mSoundIDs[i] == soundID)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
SoundClips.java 130 private final int[] mSoundIDs;
142 mSoundIDs = new int[SOUND_RES.length];
145 mSoundIDs[i] = mSoundPool.load(mContext, SOUND_RES[i], 1);
166 if (mSoundIDs[index] == ID_NOT_LOADED) {
168 mSoundIDs[index] = mSoundPool.load(mContext, SOUND_RES[index], 1);
169 mSoundIDToPlay = mSoundIDs[index];
172 mSoundIDToPlay = mSoundIDs[index];
174 mSoundPool.play(mSoundIDs[index], 1f, 1f, 0, 0, 1f);
182 for (int i = 0; i < mSoundIDs.length; i++ ) {
183 if (mSoundIDs[i] == soundID)
    [all...]

Completed in 605 milliseconds