I added CCLabel in my update method to display my game score.
It works well before score raise to 5000. After that logCat shows the messege:

02-08 11:47:37.476: E/dalvikvm-heap(4190): 1048576-byte external allocation too large for this process.
02-08 11:47:37.476: E/dalvikvm(4190): Out of memory: Heap Size=14343KB, Allocated=13585KB, Bitmap Size=2078KB
java.lang.reflect.InvocationTargetException......
caused by java.lang.OutOfMemoryError

My code is:

countScore++ ;
Log.e("total Score:", "" + countScore);
    CCLabel labelScore = CCLabel.makeLabel("" + countScore, "DroidSans", 20);

    labelScore.setColor(new ccColor3B(1,1,1));
    labelScore.setPosition(CGPoint.ccp(50, 50));
    addChild(labelScore, 11);
    labelScore.setTag(11);
    _labelScores.add(labelScore);
    CCCallFuncN actionMoveDone1 = CCCallFuncN.action(this, "labelFinished");
    CCSequence action = CCSequence.actions(actionMoveDone1);
    labelScore.runAction(action);

How to fix it?

link|improve this question

33% accept rate
1  
It looks some memory issue. There is nothing to do with CCLable. Just check memory leakage in your code. – Mihir Feb 8 at 6:44
problem with to remove CCLabel properly or anything . any idea? – Zahidul Feb 8 at 9:58
feedback

2 Answers

up vote 3 down vote accepted

I think you are creating CCLabel every time when you need.

CCLabel labelScore = CCLabel.makeLabel("" + countScore, "DroidSans", 20);
labelScore.setColor(new ccColor3B(1,1,1));
labelScore.setPosition(CGPoint.ccp(50, 50));
addChild(labelScore, 11);
labelScore.setTag(11);

Don't do that.
Set your ScoreLable as global variable and complete its initialization, color setting and positioning in constructor. In your condition use only following code.

labelScore.setString("" + countScore);
link|improve this answer
thanks Mihir you r right. – Zahidul Feb 9 at 4:58
feedback

Unless labelFinished does some cleanup that we can't see (you haven't shown us that code), It looks like you are creating 5000 labels.

You should store a single CCLabel as a class member and use setString instead of creating a new label for every score increment.

Better yet, you should use a CCLabelAtlas instead of CCLabel for frequently changing labels (such as scores).

link|improve this answer
public void labelFinished(Object sender){ CCLabel label = (CCLabel) sender; if(label.getTag()== 11) _labelScores.remove(label); this.removeChild(label, true); } this is my labelFinised method @ badgerr – Zahidul Feb 8 at 11:15
Fair enough. Did you try CCLabelAtlas? – badgerr Feb 8 at 11:22
thanks badgerr I use setString and that works properly – Zahidul Feb 9 at 4:59
feedback

Your Answer

 
or
required, but never shown

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