[android-developers] MediaRecorder - how to continuously record in memory (using a circular buffer)

2009-12-24 Thread flohier
Dear All, I'm trying to use the MediaRecorder to have my application continuously record audio in memory (to a circular buffer of a known size). Indeed, I'd like to be able to play back the past 10 seconds of recorded based on a certain event in my program. Much of the Media API is designed to

[android-developers] Application compatibility between SDK 1.5 and 1.6

2009-10-12 Thread flohier
Dear All, What is the recommended approach to have currently shipping 1.5-SDK compliant apps to start offering 1.6 features (such as TTL) in the Market ? Can we just publish 2 versions of the same package name each compiled with a different SDK level (will the Market automatically push out only

[android-developers] Wake Lock - Finalized exception

2009-08-29 Thread flohier
Dear All, I'm acquiring a wake lock and apparently, it gets garbage collected in my app at some point with the following error; D/dalvikvm( 3554): GC freed 6047 objects / 487704 bytes in 198ms E/AndroidRuntime( 3554): java.lang.Exception: WakeLock finalized while still held: AMBU

[android-developers] 2 weeks left and still no submission site available

2009-08-14 Thread flohier
There's roughly 2 weeks left and still no update on the ADC site to allow application submission. When can we expect an update ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: invoking the dialer multiple time

2009-07-31 Thread flohier
I was told to suggested to import the ITelephony.aidl file from the kernel and invoke the call() (or answerRingingCall() directly - which is not elegant but seems to be an option. The problem I have trying this is to get a pointer to telephony service form my activity: ITelephony sPhone =

[android-developers] Anyway one have experience with INJECT_EVENT ?

2009-07-28 Thread flohier
I'd like my app simulate key events. There's a permission that suggests that it's possible to do so (INJECT_EVENT). Does anyone has experience doing this ? Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: invoking the dialer multiple time

2009-07-27 Thread flohier
Quick additional question regarding the problem I'm facing: Is it possible to kill the process running the dialer and restart it ? Thanks, On Jul 26, 6:45 am, flohier floh...@gmail.com wrote: Dear All, I wrote an app that places an outgoing call via the ACTION_CALL intent. After

[android-developers] activity stak

2009-07-27 Thread flohier
Hi, Is there a way for an running activity to know if it is on top of the stack (= visible) ? Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] invoking the dialer multiple time

2009-07-26 Thread flohier
Dear All, I wrote an app that places an outgoing call via the ACTION_CALL intent. After the call is placed, the dialer enters the call log window and at that point, my application cannot re-submit an outgoing call without having the user exit the call log activity. From the kernel source,

[android-developers] documentation show all the classes offered by the SDK ?

2009-07-24 Thread flohier
Deal All, Is there a poster showing all the class and methodes offered by the android SDK and their inter dependence ? Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] placing outgoing calls

2009-07-23 Thread flohier
Dear All, Hi All, After invoking ACTION_CALL via: Intent alertintent = new Intent(Intent.ACTION_CALL, Uri.parse (tel:)); startActivity(alertintent); the call is properly placed but having hanging up, the default android dialer enters the call log tab. If I try to