I am using the following code to removes childs on every viewgroup:

   protected void onDestroy() {
    super.onDestroy();
    this.liberarMemoria();

}

public void liberarMemoria(){
     imagenes.recycleBitmaps(); 
     this.unbindDrawables(findViewById(R.id.RelativeLayout1));
     System.gc();
}
private void unbindDrawables(View view) {
    if (view.getBackground() != null) {
    view.getBackground().setCallback(null);
}
if (view instanceof ViewGroup) {
    for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
        unbindDrawables(((ViewGroup) view).getChildAt(i));
    }
    ((ViewGroup) view).removeAllViews();
    }
}

where the view: R.id.RelativeLayout1 is a ListView.

But doing this I have en exception:

E/AndroidRuntime(582): java.lang.RuntimeException: Unable to destroy activity {...}: java.lang.UnsupportedOperationException: removeAllViews() is not supported in AdapterView

How can I solve this?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Well, the error log pretty much explains it: do not call removeAllViews() on AdapterView. And your code at some point meets ViewGroup that also is AdapterView.

Just rule this case out using instanceof check or handle exception with try/catch wrapper.

link|improve this answer
Any idea why the AddapterView doesn't support this operation? I couldn't find anything in official reference of AdapterView about it. – r1k0 May 23 at 11:07
@r1k0, Yes, that's because AdapterView manages its children internally. You cannot add/remove them as this might break its internal state. – inazaruk May 23 at 11:35
feedback

Remove that line? Or at least check if the operation is supported with try and catch.

Also, it is a bit confusing to want to do this at all in a method called unbindDrawables, unless it is just a badly named method (doesn't describe what it does fully).

Are you calling all of this in onDestroy? If so, is there benefit from doing this? I was under the impression that the system takes care of this sort of thing for you.

link|improve this answer
onDestroy call "liberarMemoria()" and this call "unbindDrawables(..)". I must do it manually to ensure the destroy of Bitmap. – android iPhone Dec 6 '11 at 19:42
Right... but removeAllViews isn't necessary and is safe to remove here – Craigy Dec 6 '11 at 19:44
feedback

Don't call it. UnsupportedOperationException is telling you that this method is not supported or functional so you'll have to accomplish the task another way. I don't see the need in calling this anyway as the garbage collector will handle this task. Bitmap recycling should be done manually if you need to ensure it being done.

link|improve this answer
I want to recycle Bitmap and i must do manually, but what is the best way? – android iPhone Dec 6 '11 at 19:38
I can't tell you the best way without seeing all your source but you should do it in onDestroy() and keep track of all Bitmap objects used so you can recycle() them. – Dan S Dec 6 '11 at 19:41
feedback

Your Answer

 
or
required, but never shown

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