[android-developers] java.lang.OutOfMemoryError: bitmap size exceeds VM budget

2009-01-23 Thread ad
I've problem with memory of the bitmaps, I'm creating a lot of bitmaps and then releasing them by recycle() and after many retries I get: java.lang.OutOfMemoryError: bitmap size exceeds VM budget How to get rid of this??? The problem is that even if i close the activity (call onDestroy()), in

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-25 Thread ad
YES YES YES!!! I've found solution for that. It's tricky but it works. Place that on the begining of your code. try{ while (true){ Bitmap tmpBitmap = Bitmap.createBitmap(320, 4800, Config.ARGB_);

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-25 Thread ad
YES YES YES!!! I've found solution for that bug. It's tricky but it works. Place that on the begining of your code. try{ Bitmap tmpBitmap = Bitmap.createBitmap (3200, 4800, Config.ARGB_); }catch(Throwable e){

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-25 Thread ad
Android from all the time bumping into the heap limit and possibly crashing as a result in case its memory management is not 100% reliable, but trying to allocate 61 MB should not offer any benefit? Regards On Jan 25, 2:23 pm, ad avra...@gmail.com wrote: YES YES YES!!! I've found solution

[android-developers] No window to dispatch pointer action 1 onTouchEvent problem

2009-02-03 Thread ad
Does anybody have any idea why I get often(but not always) error during the on touch event? Handling touch events is freezed for few seconds(this appears only immediately after application start). Then Error screen appears (choose wait of close). When I choose wait after few seconds screen is

[android-developers] bad packet exception - eclipse debugging

2009-02-04 Thread ad
eclipse debugging - what to do? [2009-02-04 16:09:49 - ddms]null com.android.ddmlib.BadPacketException at com.android.ddmlib.JdwpPacket.findPacket(Unknown Source) at com.android.ddmlib.Client.getJdwpPacket(Unknown Source) at

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-02-06 Thread ad
, and think a bit. I stand by what I said. Regards On Jan 25, 8:30 pm, ad avra...@gmail.com wrote: Check first, and think a bit. On Jan 25, 2:49 pm, blindfold seeingwithso...@gmail.com wrote: How can this possibly help you? You are trying to allocate 61 MB (3200*4800*4 bytes), which lies

[android-developers] Can we access windows partition through android?

2010-08-09 Thread AD
Hi, I want to run some batch scripts to on windows box but my project is android project hence it acess its shell if I use exec but is there anyway I can able to access the windows partition? Best Regards, Amit Dixit -- You received this message because you are subscribed to the Google Groups

[android-developers] cupcake 1.5 r1 surfaceCreated is not called!!!

2009-04-28 Thread ad
I've created game, everything works fine on all previous android versions except current cupcake 1.5. It works even on cupcake pre release.I'm using exact the same build.xml, sources and resources. The problem is that surfaceCreated is not called : SurfaceHolder mSurfaceHolder =

[android-developers] Re: cupcake 1.5 r1 surfaceCreated is not called!!!

2009-04-29 Thread ad
the problem now? Is it depreciated? I would like to know how to make it now compatible to all versions. AA On Apr 28, 11:41 pm, Jon Colverson jjc1...@gmail.com wrote: On Apr 28, 12:56 pm, ad avra...@gmail.com wrote: The problem is that surfaceCreated is not called :                 SurfaceHolder

[android-developers] Re: Android Market :: Free application gets to top of pile on new release, paid app doesn't?

2009-07-07 Thread ad
I'm guessing there was a longer period between releases on the free one - maybe thats why it went to the top? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Android Browser Plugin development

2012-05-04 Thread AD
Hi I am trying to build the android sample browser pluginI. As of now i am able to run it successfully on emulator. While browsing over net I found the following post http://stackoverflow.com/questions/5868963/browser-plugin-query-on-android-platform-froyo-2-2-1-release Which says As if now

[android-developers] what do you think of interstitial ads on apps

2011-06-09 Thread ad communal
Hi group, I am with adMobix.com, a mobile ad network, and looking at ways to help developers generate ad revenue from their apps. Aside from our SDK for regular banner ads, we were looking at interstitial ads. Interstitial ads are full screen ads that would appear between two pages

[android-developers] Can i use admob banner in webview

2018-05-01 Thread ad . braindevs
Can i use admob banner(not overlapping) above of webview with margin? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[android-developers] Checking if 5ghz wifi is available

2012-10-04 Thread Reductio Ad Absurdum
Hi all, i'm desperatly searching for a method to figure out if a device running my app can actually use the 5Ghz wifi band. Does anyone know how to do that? Thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Checking if 5ghz wifi is available

2012-10-05 Thread Reductio Ad Absurdum
Am Donnerstag, 4. Oktober 2012 22:22:10 UTC+2 schrieb Irfan Sheriff: On Wed, Oct 3, 2012 at 8:11 AM, Reductio Ad Absurdum timm...@gmail.com wrote: Hi all, i'm desperatly searching for a method to figure out if a device running my app can actually use the 5Ghz wifi band