Automated emulator screenshot

I want to take automatic screenshots of a running emulator for example. every 10 seconds and then save them to the directory.

I found out that I can do screen capture with DDMS, but only through the interface. Is there any console scripting API?

+3


source to share


1 answer


If you want to do this on the system side take a look at Android-DDMLIB . And Droid @Screen Also have a look at this Android tutorial : How to take screenshots from command line .



Or, if you want to do it all on the Android device side, you should root permission

and read device framebuffer

for it.

+3


source







All Articles