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 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)
    [all...]

Completed in 233 milliseconds