Android Studio - Where can I see a column when debugging an Android application?

While at a breakpoint, how can I see the call stack to find the call method / function?

+85
android debugging android-studio callstack
Jan 12 '14 at 6:29
source share
2 answers

On the bottom panel you should have "5: Debug". Click on it and select "Debugger β†’ Threads"

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

+90
Jan 12 '15 at 13:37
source share

It looks like there is a UI error in 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 resize it from the variable panel by dragging its left border to open Frames / Threads.

Example

[I must admit that @Greg added this image after considering my answer!]

+130
Aug 03 '15 at 15:48
source share



All Articles