[android-developers] Re: Porting of Android Open Accessory

2012-05-28 Thread Mark Meisner
Did you ever get this working? I am trying to accomplish something similar. On Monday, December 12, 2011 4:15:36 AM UTC-5, Bhargav wrote: Hi All This is Vinod from India, We are trying to port the Accessory protocol from the Arduino ADK to a Freescale iMX35 board, We are using beagle board

[android-developers] Re: incorrect memory allocation causing frequent garbage collections

2012-02-07 Thread Mark Meisner
I have not. I'll give it a go 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@googlegroups.com To unsubscribe from this group, send email to

[android-developers] incorrect memory allocation causing frequent garbage collections

2012-02-03 Thread Mark Meisner
I am creating a video via bitmaps updated in rapid succession (15fps). The problem is, when I call createBitmap() or createScaledBitmap(), Android creates a new bitmap, instead of overwriting the old one. This makes the system have to GC very often which in turn makes my video shutter. How