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

android, android-studio, callstack, debugging

Solution

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.

Problem

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

Original source