Tagged Questions
1
vote
1answer
34 views
soundPool.load() inside (wait) Thread?
Hey I want to load sounds on a soundPool inside a Thread which contains a sleep command. The block I am talking about looks like that:
Thread wait = new Thread() {
@Override
public void run() ...
0
votes
0answers
113 views
How I can use SoundPool with Threads?
In my project,the application play a sound When user touch special positions(like a house in an image). I have 72 positions.
I used a SoundPool class:
package com.app;
import ...
0
votes
1answer
207 views
Android SoundPool: AudioFlinger error
My SoundManager class uses SoundPool for it's audio. I have a sound that will loop, 1 second on and 2 seconds off until told to stop. The problem is that this will execute once and then I notice an ...
1
vote
0answers
103 views
(Android) Initial lag in playing sounds - SoundPool and MediaPlayer both
So I've been learning Android dev for a short while now, and I'm writing a metronome app, with tap tempo. What I'm doing is keeping a play button, which starts the metronome when you hit it. In the ...