Reputation: 3476
I tried searching on here but couldn't find the answer.
I'm looking for a way to launch the Hierarchy Viewer from within Android Studio, rather than having to launch it at the command-line. I've recently migrated to Android Studio from Eclipse, and this functionality was available under the DDMS set of tools in that IDE.
I've looked under the "Android" toolbar, and can see the screen-shot functionality there, but not the hierarchy viewer. I've also looked under Tools > Android in the menu system, and it's not there either.
Upvotes: 56
Views: 27195
Reputation: 11913
There is a new live layout inspector. View > Tool Windows > Layout Inspector
Later versions of Android Studio 4.x also have it directly under Tools > Layout Inspector
For more information on its usage see this article or the developer documentation.
The layout inspector is now found directly under tools. Tools > Layout Inspector
The layout inspector can only be found under Tools > Android > Layout Inspector
Instructions from original link on how to open the Layout Inspector:
To open the Layout Inspector, first launch your app on a connected device or emulator. Then open the Android Monitor
window, select your device and app process, and then click Layout Inspector
. You can also open it by clicking Tools > Android > Layout Inspector in the menu bar.
Upvotes: 34
Reputation: 22371
DDMS, Hierarchy Viewer, openGL Tracer etc all moved into Android Device Monitor. To access:
Upvotes: 86