문제

I'm trying to identify a memory leak in my Android application. I'm very new to DDMS, and just trying to get my head around it.

One of the things I keep seeing is a little yellow circle in the icon for each object.

Yellow Circles

What does this indicate? I can't find any explanation of it.

도움이 되었습니까?

해결책

According to eclipse memory analyzer:

Objects decorated with a yellow dot are Garbage Collection (GC) Roots, i.e. objects which are assumed to be alive. Usually GC Roots are objects that are currently on the call stack of a thread or system classes.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top