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

Search results

  1. S

    [ADVENTURE GAME] Simon the Sorcerer: 20th Anniversary Edition

    Simon the Sorcerer: 20th Anniversary Edition Simon the Sorcerer is coming back after 20 years, in an official and exclusive Android release! Enjoy this classic point-and-click fantasy adventure game, with many improvements: - New HD graphics mode - Praised touch interface - Multiple...
  2. S

    Apps Installing new root CA certificate from application

    Hello, My application redirects its users to a known domain (secure.gate2shop.com) that its root certificate doesn't exist on Android devices. Normal PC browsers have no problem accessing the site, but Android browser displays to the user that the certificate is untrusted. I don't want that...
  3. S

    Apps Unexplained error from MediaPlayer

    My code tries to play an MP3 file from res/raw. FileDescriptor fd = appContext.getResources().openRawResourceFd(R.raw.ringtone) .getFileDescriptor(); player = new MediaPlayer(); try { player.setAudioStreamType(AudioManager.STREAM_RING); player.setDataSource(fd)...
  4. S

    Apps Synchronizing AudioTrack and AudioRecord

    Hello, My application uses AudioTrack in streaming mode and AudioRecord simultaneously. My problem is that I start them at the same time, but I have no guarantee that they will actually start playback\recording in the same timestamp. The reason I need this kind of accuracy is because I use...
  5. S

    Apps Problem using AudioRecord in Motorola Milestone

    My application uses AudioRecord to record streaming voice. On ANY OTHER Android device it initializes properly and works great, excluding Motorola Milestone, which force closes and the log shows: 01-17 14:08:41.124: DEBUG/AudioHardwareMot(1059): AudioMgr:AudioHardwareMot::openInputStream...
  6. S

    Apps Echo Cancellation

    Does anyone know how to use the device's echo cancellation functionality? I'm implementing my custom VoIP and it would save me a lot of work and CPU usage if the device did that for me, like in a GSM\CDMA call.
  7. S

    Apps UDP DatagramSocket.receive() glitches

    Hello, I have a thread that constantly polls a UDP connection and posts the received data to another thread. It uses a connected DatagramSocket, reads a packet (which is always the same size), gets the data and posts it to a message queue (not the android one, my implementation). The problem...
  8. S

    Apps Showing a Toast or Activity on top of another application

    Hello, I have an application which runs a background thread which eventually updates listeners on some incoming event. When I'm in this listeners' code, I want to be able to either show a Toast or a new Activity on top of the screen, regardless of what is running in this moment - but to be...