All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robolectric.shadows.ShadowSoundPool Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package org.robolectric.shadows;

import android.media.SoundPool;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
import org.robolectric.util.ReflectionHelpers;

import android.media.AudioAttributes;

@Implements(SoundPool.class)
public class ShadowSoundPool {
  @RealObject
  SoundPool realObject;

  public void __constructor__(int maxStreams, AudioAttributes attributes) {
    ReflectionHelpers.setField(realObject, "mLock", new Object());
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy