Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

MediaRecorder latency on Android

I'm experimenting with recording audio in a homebrew Android application, then immediately playing back the audio. I define an OnTouchListener for a button that waits for a MotionEvent. Recording happens if the ACTION_DOWN MotionEvent occurs for as long as the button is held; recording stops if the ACTION_UP MotionEvent occurs.

The problem is that recording doesn't happen exactly when the ACTION_DOWN event occurs, aka pressing the button. How can you design the action to start recording exactly when the button is pressed and the MediaRecorder is called to start?

I've searched through Stack Overflow and found other users with the same problem and no great solution. Is it even possible?

If you need code, I can provide.