I am running my app with StrictMode activated in development as documented here StrictMode for lower platform versions and noticed an error message that I do not know what to think about nor can I find any reference.

I get a android.os.StrictMode$InstanceCountViolation with values for instances and limit e.g.

instances=3; limit=2

Now I am wondering a. how is the limit calculated and b. how can such a violation actually happen and then I would look into evasive actions.

Any ideas?

link|improve this question

67% accept rate
Ever figure this out? I've just run into it myself, for a preference activity. – AndyD Feb 28 at 19:38
I wish... at this stage I think it is a bug in the StrictMode because I was even able to verify that it is wrong using static variables and counting .. – Manfred Moser Feb 28 at 19:44
feedback

1 Answer

My understanding is that this violation is used to detect memory leaks. So at that point you should only have 2 instances of the class loaded, but the VM found 3.

I have seen this violation in my code also, but my extra instances were all referenced by weak pointers. So I choose to disable this rule.

link|improve this answer
1  
In my case there should be only a single instance of the activity but it shows limit 2. So I am wondering how it gets the limit. Not to mention how 3 instances appear.. – Manfred Moser Jul 18 '11 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.