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

Search results

  1. J

    Apps Editing an Android xml file crashes eclipse

    Eclipse keeps crashing when I make too many changes to an android xml layout file. After making a certain amount of changes I get a "Problem Occurred - Save Failed - No More handles" error message box, and then eclipse crashes. This is on Eclipse Galileo Version 3.5.1 Build id...
  2. J

    Apps How to increase emulator memory?

    For testing purposes I would like to create an emulator with much more than the standard 16 megabytes of memory. I am trying to create very large Bitmaps and need more memory on the emulator. I am currently getting this error. java.lang.OutOfMemoryError: bitmap size exceeds VM budget In...
  3. J

    Apps Playing recorded audio

    On the G1 I am attempting to play audio that has been recorded. Here is the code I am using to record audio. /////////// m_recorder = new MediaRecorder(); m_recorder.setAudioSource(MediaRecorder.AudioSource.MIC); m_recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP)...