Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created March 20, 2018 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/129bcbc91ef8ec7163b8645bba42d1ac to your computer and use it in GitHub Desktop.
Save ssaurel/129bcbc91ef8ec7163b8645bba42d1ac to your computer and use it in GitHub Desktop.
AudioSoundPlayer for the Piano on the SSaurel's Channel
/**
* Created by ssaurel on 15/03/2018.
*/
public class AudioSoundPlayer {
private SparseArray<PlayThread> threadMap = null;
private Context context;
private static final SparseArray<String> SOUND_MAP = new SparseArray<>();
public static final int MAX_VOLUME = 100, CURRENT_VOLUME = 90;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment