Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to take screenshot in android emulator

From Android 4.0, it supports volumn down+power key to take screenshot and saved in gallery. But how to do this in android emulator.

I know in eclipse, there is a 'take screenshot' button, but this is not what I want. I need it in the emulator and saved in emulator.

like image 212
lseeo Avatar asked Apr 09 '13 02:04

lseeo


2 Answers

As seen in this post: Screenshot of the Nexus One from adb?, you can also take a screenshot using adb:

 adb shell /system/bin/screencap -p /sdcard/screenshot.png
 adb pull /sdcard/screenshot.png screenshot.png
like image 116
Pedro Lopes Avatar answered Oct 14 '22 22:10

Pedro Lopes


just click in photo icon for take screenshot in android emulator

enter image description here

like image 75
birigy Avatar answered Oct 14 '22 21:10

birigy