Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Android Studio What's use of "Layout Captures" tool

"Layout Captures" tool in Android Studio showing nothing to show , how can i use this tool ?

and what's use of that ?

enter image description here

like image 875
krish singh Avatar asked Jan 17 '19 06:01

krish singh


1 Answers

"Layout Captures" shows you all layout that were captured by the "Layout Inspector." Yours is empty since you have not captured any layouts. See Layout Inspector documentation.

To see how this works, capture a layout from a running emulator or attached device using the Layout Inspector which is invoked from the menu:

enter image description here

Here is an example of a layout that was captured. Various aspects of the layout can be inspected from this screen and can be very useful when debugging a layout.

enter image description here

You can now see this layout in "Layout Captures." All captures will be displayed in this tab so you can refer to them. You can also delete old layout capture files from this screen.

enter image description here

like image 199
Cheticamp Avatar answered Nov 13 '22 02:11

Cheticamp