Skip to main content

Posts

Showing posts with the label screenshot

Take screenshot using adb

Many times, when I am working with the Android devices, I just want to keep using the command line and be able to take the screenshots too. Yes, we can do that! Here is how: Start ADB server if its not already running. To check, type in adb devices on the command line -- if its not started it should start now and give you the device id for the device you have connected Now type in the following commands to capture a screen adb shell screencap -p /sdcard/Pictures/Screenshots/screen.png adb pull /sdcard/Pictures/Screenshots/screen.png adb shell rm /sdcard/Pictures/Screenshots/screen.png

Capture the Screens!!!!

Well I just wanted to have all the different ways to capture the screen (screenshots!!!) for different devices at one place   iPad – Hold the Power Button, Click on the Home Button and release – More details iPhone – Hold the Power and the Home Button simultaneously and release both – More details Kindle Fire – Hold the Volume Down button and power button simultaneously and release both – More details Samsung Galaxy – Hold the Power and Home Button simultaneously and release both – More details   Hope this helps!!!