• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. M

    Apps Need help debugging

    Nevermind, figured it out on my own. Can someone close this thread?
  2. M

    Apps More flexible audio output

    Hi, I want to create an app where just by modifying a slider the user can change the pitch of a sound. The modification should be continuous. I've looked through the Android reference and there doesn't seem to be any sort of class that deals with this sort of real time audio editing.
  3. M

    Apps Jet Player mute masks acting weird

    I was playing around with the Jet player and I noticed I can't use the mute masks properly. public class touchCoord extends Activity { boolean muteMask[] = new boolean[1]; boolean unmuteMask[] = new boolean[1]; boolean playing, updateSucces; TextView log; JetPlayer jp...
  4. M

    Apps About sounds

    Hi, The only way to play sounds in Android, afaik, are either using media player or using JET content. However both of these use precreated sounds to play. What I am looking for is for some way to just start from one sound and then, during playback to modify its pitch and maybe loudness. So...
  5. M

    Apps Coordinates on touch

    Hi, How should one go about if one wants to get the coordinates of where the user is touching the screen? Do all Views support this or is there a special type of View that allows you to know this? Surface View looks like something that might be helpful here, but I don;t know how to obtain the...
  6. M

    Apps Help debugging

    Hi, I'm trying to write a simple app that plays a sound when a button is clicked and then stops playing it when the button is clicked again. I'll just copy-paste the code: There is a file called play.mp3 in /res/raw. When I try and run it I receive an error saying the app stopped unexpectedly...