0
votes
0answers
25 views

Is Dalvik GC using concurrent mark and sweep or copying or both?

Is this statement correct ? "So in android 2.3 concurrent mark and sweep is used for stack related objects treating everything as pointer and copying garbage collection is used for the objects in the ...
8
votes
0answers
83 views

Large memory chunk not garbage collected

In a hunt for a memory-leak in my app I chased down a behaviour I can't understand. I allocate a large memory block, but it doesn't get garbage-collected resulting in a OOM, unless I explicit null the ...
1
vote
0answers
29 views

GcWatcher.finalize timed out after 10 seconds

What is the reason for this exception? I have an activity with few videos running in it. Got puzzled. Please help. 06-15 11:00:33.775 E/AndroidRuntime(11757): FATAL EXCEPTION: ...
3
votes
2answers
53 views

Is Pooling for Small Objects More Efficient than Android's Java Garbage Collector?

So, I was reading this: http://www.ibm.com/developerworks/java/library/j-jtp09275/index.html which says, "Public service announcement: Object pooling is now a serious performance loss for all but the ...
1
vote
3answers
50 views

HashMap and garbage collection: do I need to call clear() before variable re-assignment?

Maybe it's a silly question but I'm not sure about the garbage collection process. Consider this code: private HashMap<String, Parameter> configuration = new HashMap<String, ...
0
votes
2answers
56 views

GC run too often

This is a general question. In my application the garbage collector is running too often (several times per second) and doesn't free a lot of memory (less than 1Mb). The thing is, the heap size ...
2
votes
1answer
60 views

Is there a memory leak in the Android ZXing library?

I have written an Android app using the ZXing library and I am getting an java.lang.OutOfMemoryError. First, I was sure the error was on my end, so I used the Eclipse Memory Analyzer (MAT) according ...
1
vote
0answers
77 views

Android, Memory Leak when downloading 14'000 small images with AsyncTask

I'm currently using Phonegap in a project and I need to download thousands of images. Since now it was done directly in Javascript with Phonegap's API. But it takes quite a huge time to proceed ...
0
votes
0answers
14 views

When should I recycle my Bitmap's of my custom View?

Is there any method like onDestroy() in Views, where I can be sure of that the view is disposed, and so can call recycle() on the Bitmap I use in it (Custom code, with private Bitmap)?
0
votes
1answer
34 views

Is it a good idea to call recycle() and destroyDrawingCache() after creating a bitmap, performance-wise?

In my Android app I have a function to get a bitmap from an ImageView and TextView, then save it to the SDCard. At the end of the function I am currently calling recycle() on the bitmap objects and ...
1
vote
0answers
26 views

postInvalidate() causes heap

I have set up a system to move certain images in an application, but my postInvalidate() calls seem to cause a lot of heap space. private class update extends TimerTask { @Override public ...
2
votes
4answers
80 views

When does WeakReference#get() start returning null?

I want to use WeakReferences as part of an (android) bitmap-cache to be able to check when a bitmap isn't used anymore. My cache has a maximum-size that is smaller than the Java heap-space. When a ...
3
votes
0answers
148 views

Android Eclipse DDMS > Heap > Cause GC greyed out

I'm unable to click the Cause GC button in the Heap tab under the DDMS Perspective in Eclipse because it is greyed out. I'm using ADT v22 (the Eclipse/Android/ADT package) on OS X. Device I'm using ...
1
vote
1answer
48 views

Correct usage of DeleteLocalRef in JNI

Here is the sample jni method where I create a string and return it to the calling java method: jstring Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env, ...
0
votes
2answers
32 views

Android: Socket-Connection causes lags and a lot of GC action

This is a Thread with a Socket-connection. The Server sends random int numbers to this socket (every 10 ms). The Problem is, that after a while the are huge lags of receiving the data and LogCat ...
0
votes
1answer
40 views

Android - Heap usage at Application Start and CG_CONCURRENT

I'm having troubles with performances on my application because of the GC, and I don't have really much experience to understand what's going on. Here's the detailed situation of what's happening. ...
2
votes
1answer
60 views

Handler changing UI causes CalledFromWrongThreadException

I've created a Handler that can be accessed from anywhere within the activity and also written a method to make it easier to call the handler: private Handler textFromBGThread = new Handler() { ...
0
votes
0answers
32 views

Weak Reference on Locale in Android

Please check this code: TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); Locale loc = null; WeakReference<Locale> locWeak = new ...
0
votes
1answer
96 views

PhoneGap Garbage Collection

I had a long discussion with my friend about PhoneGap. He said that PhoneGap has no garbage collection scenario. I searched for Javascript garbage collection and found the following links: What is ...
1
vote
1answer
35 views

ListViewAdapter - when listeners, attached to view are collected?

I am using Custom ListViewAdapter for displaying, well, a list. Each row in the list has 3 buttons, i.e. listeners attached. But I am finding it very disturbing, that during each scroll the new ...
2
votes
1answer
157 views

Monodroid: Performing a full GC

I try to create my small particle system. I have ParticleManager with list of Particles and draw my particles on canvas. I create any new objects like Paint and etc once just in init() function! If ...
-1
votes
1answer
58 views

android (apache harmony) garbage collection

The Sun JDK has a java.lang.ref.Finalizer class, which is used during garbage collection. In Apache Harmony, the standard library that Android is based on, does not have the class. My question is: ...
0
votes
0answers
168 views

Android NDK returning C++ pointer works on emulator but not device

So im trying to keep na instance of a C++ class between my NDK calls, i.e. the new NetPoco pointer does not work, below. Everything works fine in the simulator but on devices it seems to get caught ...
0
votes
0answers
48 views

Android: Reduce time spent in garabage collection

I am having problems with my openGL audio visualizer falling behind the music. I recently changed to a mulithreaded approach. Everything works great on Samsung S3, but on HTC Evo the audio visualizer ...
0
votes
3answers
640 views

Wait for concurrent GC blocked

When I run my application on emulator the Logcat is showing this: 04-22 16:21:30.685: D/dalvikvm(967): GC_CONCURRENT freed 1545K, 20% free 7019K/8720K, paused 78ms+17ms, total 360ms 04-22 ...
0
votes
0answers
77 views

Android GC and AudioTrack, GC thread stuck in dlmalloc_inspect_all and AudioTrack stuck .. tryLock

A quick background: The app is an audio player, ffmpeg is compiled as a native shared object and used for decode, a separate native library is compiled as a shared object and used for audio ...
1
vote
1answer
254 views

How does garbage collection work in Android 4.2 Jelly bean Dalvik VM?

Edit : Is this statement "So in android 2.3 concurrent mark and sweep is used for stack related objects treating everything as pointer and copying garbage collection is used for the objects in the ...
0
votes
2answers
90 views

How to destroy static field when app exits?

I got a singleton class in my application, which is defined just somewhat like: public class SingletonTest { private SingletonTest() {} private static SingletonTest instance = new ...
1
vote
1answer
64 views

Is bitmap can be used after it's been garbage collected?

I was watching this video, that talks about memory allocation for bitmaps and garbage collection: DevBytes: Bitmap Allocation Chet is talking about how it was managed by the developer prior to SDK ...
0
votes
1answer
99 views

Android OBJ to VBO loader, Garbage Collection loop, how to improve?

I've just recently gotten an OBJ loader and viewing Android application working correctly with vertices, normals and texture coordinates, but in order to keep track of these data values correctly, I ...
3
votes
0answers
46 views

Difference in garbage collector behavior on Android device versus the emulator

I'm testing my application's memory usage on the emulator. And the problem is that on the emulator the app heap is just growing and growing, just a little bit of resources are freed. And if no ...
9
votes
4answers
104 views

Understanding Android GC Messages

I have the following message on my catlog, GC_CONCURRENT freed 456K, 19% free 2753K/3360K, paused 5ms+9ms, total 378ms I am trying to make send of the last valut total. I've checked other GC ...
0
votes
1answer
57 views

Android GC Behaviour

I am trying to understand why android GC behaves the way it does, VM Heap is set to 512 MB Runtime.getRuntime maxMemory is 512 MB Runtime.getRuntime totalMemory is 13 MB Runtime.getRuntime ...
0
votes
3answers
84 views

Android do i need to set each object to null when done using it?

I have this object I've created which holds references to some other objects: public class ListHandler { private AppVariables app; //AppVariables instance private Extra extra; //the extra ...
0
votes
1answer
170 views

Heavy GC in Android while displaying animated .gif

In my Game i use Animated gif ( the standart movie decoder from android did not work for me), but this Code worked perfectly on all Android versions i testet so far: here is the decoder: import ...
0
votes
1answer
71 views

Android Not Enough Heap Allocated

I have an application that is communicating with an arduino and it runs a netty instance for controlling the arduino. The problem is I am not running out of memory but total heap size to used heap ...
0
votes
1answer
123 views

Out of memory error in Android - Why does the GC not work?

I am working on an application which consists of different screens, which I am designing as different activities with different layouts. For each screen, there are two, large (1536x2048) png files, ...
1
vote
2answers
45 views

Garbage collection of local instance that calls a method that performs asynchronous tasks

If I have a local instance of class that calls a method that performs asynchronous tasks, can I depend on garbage collection never being performed before the asynchronous tasks are completed. Here is ...
0
votes
2answers
53 views

android ui helper object keeping activities from being GCed

Is it a bad idea to create a UIHelper class that takes an activity reference? I'm trying to understand and avoid memory leaks and one of the biggest problems I've read is to not pass around contexts. ...
0
votes
1answer
79 views

Prevent Fragment recovery in Android

We are using Fragments and we don't need them to be automatically recovered when the Activity is recreated. But Android every time when Activity::onCreate(Bundle savedInstanceState) -> ...
12
votes
1answer
169 views

Other processes call GC which slows down my game

I'm writing a real-time arcade game for Android >= 2.1. During gameplay I'm not allocating memory, to not seduce GC. Beacuse if GC invokes, it takes processor for 70-200ms. User see this as "oh no, ...
4
votes
3answers
143 views

17.8 MiB heap allocation for a simple “Hello World” project?

I am guessing there is an obvious answer here... I am left confused with this one: Why do I get 17.8 MiB heap memory allocated when all I have done is: Created a simple "Hello World" project with ...
2
votes
3answers
281 views

How to stop Garbage collection in Android 2.3.3

I have android application 2.3.3 use calendarView when press button => show dialog (contain calendarView) My logcat display: D/dalvikvm(15292): GC_CONCURRENT freed 1988K, 10% free 20024K/22087K, ...
2
votes
0answers
94 views

Animation on emulator slow and choppy due to garbage collection

I am currently testing my app on an emulator and have noticed a lot of garbage collection takes place while I'm performing animations. I am concerned that all this garbage collection may not be ...
3
votes
1answer
151 views

meanings of Android GC Log message

First I'd like to paste some GC log messages here for Honeycomb . 03-08 01:31:54.354: D/dalvikvm(258): GC_CONCURRENT freed 196K, 5% free 7078K/7431K, paused 3ms+3ms 03-08 01:31:54.494: ...
2
votes
1answer
45 views

Android OutofMemory with ObjecOutputStream

I have created a client/server pair with two threads to send and receive objects, While it runs fine at the beginning I'm experiencing an OutofMemory error when it runs for a while, I was looking out ...
1
vote
1answer
255 views

Android: Fragment retain instance memory management

im wondering how androids garbage collector works with data that is kept by the fragment (retain instance). If I have a Class hirarchy like this: class MyFragment extends Fragment { private ...
7
votes
3answers
194 views

Can garbage Collector deallocate singleton instance? (and why or how to avoid it)

In Android I have singleton class but I am not sure if the garbage Collector can deallocate it. If garbage Collector will deallocate my singleton class how can avoid it from deallocation?
1
vote
2answers
771 views

Garbage Collection causes : MediaPlayer finalized without being released

After a lot of debugging I finally found what is causing this error! Garbage Collection! I have a video playing in media view and in the background I am looking for new videos from a Rest API. Every ...
0
votes
1answer
324 views

Recycling views inside a horizontal scrollview android

I'm making an app with fairly complex UI. Its comparable to a horizontal list view that expands to a viewpager on being clicked. Presently, I've implemented this using the most basic approach. I ...

1 2 3 4 5 6