Android Studio - Where can I see callstack while debugging an android app?

AndroidDebuggingAndroid StudioCallstack

Android Problem Overview


While on a break point, how do I see the call stack to find the callee method/function?

Android Solutions


Solution 1 - Android

Seems like there is an UI-Bug in the Android Studio (1.x, 2.x and 3.x).

For me the "Frames/Threads" Panel was completely hidden behind the toolbar, so I had to change the size from the "variable" panel by dragging its left border to reveal the "Frames/Threads".

Example

[I have to admit, that @Greg added this picture after reviewing my answer!]

Solution 2 - Android

At the bottom panel you should have "5: Debug". Click on it and select "Debugger -> Threads"

You may need to find the "Threads" icon on the far right, or even click the "Restore Layout" button on the left to restore this window.

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionIsmailSView Question on Stackoverflow
Solution 1 - AndroidlongiView Answer on Stackoverflow
Solution 2 - AndroidNickolai AstashonokView Answer on Stackoverflow