Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to programatically take a screenshot on Android?

How to capture the android device screen content and make an image file using the snapshot data? Which API should I use or where could I find related resources?

BTW: not camera snapshot, but device screen

share|improve this question

marked as duplicate by casperOne Oct 24 '12 at 12:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

8 Answers

up vote 8 down vote accepted

According to this: http://www.mobilecrunch.com/2008/10/31/how-to-capture-the-screen-of-an-android-device/ you can use ddms in the tools directory of the android sdk to take screen captures.

If you want to do this from within your application and not during development, there are applications to do so, see Screenshot for an example. But as zed_0xff points out it certainly requires root.

share|improve this answer

AFAIK, All of the methods currently to capture a screenshot of android use the /dev/graphics/fb0 framebuffer. This includes ddms. It does require root to read from this stream. ddms uses adbd to request the information, so root is not required as adb has the permissions needed to request the data from /dev/graphics/fb0.

The framebuffer contains 2+ "frames" of RGB565 images. If you are able to read the data, you would have to know the screen resolution to know how many bytes are needed to get the image. each pixel is 2 bytes, so if the screen res was 480x800, you would have to read 768,000 bytes for the image, since a 480x800 RGB565 image has 384,000 pixels.

share|improve this answer
5  
Note: not all framebuffers are RGB565. There are different formats. – ACT Dec 15 '10 at 21:42
Hi Ryan you are absolutely right,i really appreciate your answer.. can please give me a sample code describing how to capture screen from /dev/graphics/fb0.. – manju Jan 10 '11 at 11:10
yes this is the only way to go, that doesn't require root – radhoo Apr 3 '12 at 11:46
Ryan, would you please elaborate more on exactly what happens that makes ADBD have access to the frame buffer? I de-compiled DDMS code and tried to package the DDMS code for screen capture on the device itself (as part of an app), but i didn't know how that can get access to permissions for frame buffer. – David T. May 30 '12 at 22:21
adbd runs on the device, it allows the adb client (ddms) to connect and request the framebuffer. I don't know if it will work with an app running directly on the device. DDMS connects to adbd via tcp. The adbd process runs as a "root" account, which is why it can access the framebuffer. – Ryan Conrad Jun 1 '12 at 1:57
show 1 more comment

Use the following code:

Bitmap bitmap;
View v1 = MyView.getRootView();
v1.setDrawingCacheEnabled(true);
bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);

Here MyView is the View through which we need include in the screen. You can also get DrawingCache from of any View this way (without getRootView()).

share|improve this answer
This way just helps you to capture your app, right? What if I want to capture entire screen? – Nguyen Minh Binh Aug 30 '12 at 5:00
Unfortunately, this does not appear to work when capturing things like dialogs and when the keyboard is showing. :( – LadyCailin Nov 2 '12 at 23:11

You can try the following library: http://code.google.com/p/android-screenshot-library/ Android Screenshot Library (ASL) enables to programmatically capture screenshots from Android devices without requirement of having root access privileges. Instead, ASL utilizes a native service running in the background, started via the Android Debug Bridge (ADB) once per device boot.

share|improve this answer
Any example to take the screen shot from this library ??? – iDroid Explorer Oct 14 '11 at 4:31
the indicated project has too components: a native framebuffer grabber and a java interface, the native component still needs ROOT to run! so overall this solution will not work without root. – radhoo Apr 3 '12 at 11:45

For newer Android platforms, one can execute a system utility "screencap" in /system/bin to get the screenshot without root permission. You can try "/system/bin/screencap -h" to see how to use it under adb or any shell.

By the way, I think this method is only good for single snapshot. If we want to capture multiple frames for screen play, it will be too slow. I don't know if there exists any other approach for a faster screen capture.

share|improve this answer
on ICS and on Honeycomb, works like charm. – Alex Cohn Aug 2 '12 at 7:12
/system/bin/screencap is great but seems to force a max read rate of 3 screens per second :( – Rui Marques Sep 27 '12 at 16:14
@AlexCohn: could you please post the sample code. Thanks – ZuzooVn Nov 5 '12 at 11:49
@ZuzooVn: this is a utility (command), no code for this. – Alex Cohn Nov 14 '12 at 9:28
@AlexCohn : without root permission? . How can you run command – ZuzooVn Nov 14 '12 at 16:25
show 3 more comments

[Based on Android source code:]

At the C++ side, the SurfaceFlinger implements the captureScreen API. This is exposed over the binder IPC interface, returning each time a new ashmem area that contains the raw pixels from the screen. The actual screenshot is taken through OpenGL.

For the system C++ clients, the interface is exposed through the ScreenshotClient class, defined in <surfaceflinger_client/SurfaceComposerClient.h> for Android < 4.1; for Android > 4.1 use <gui/SurfaceComposerClient.h>

Before JB, to take a screenshot in a C++ program, this was enough:

ScreenshotClient ssc;
ssc.update();

With JB and multiple displays, it becomes slightly more complicated:

ssc.update(
    android::SurfaceComposerClient::getBuiltInDisplay(
        android::ISurfaceComposer::eDisplayIdMain));

Then you can access it:

do_something_with_raw_bits(ssc.getPixels(), ssc.getSize(), ...);

Using the Android source code, you can compile your own shared library to access that API, and then expose it through JNI to Java. To create a screen shot form your app, the app has to have the READ_FRAME_BUFFER permission. But even then, apparently you can create screen shots only from system applications, i.e. ones that are signed with the same key as the system. (This part I still don't quite understand, since I'm not familiar enough with the Android Permissions system.)

Here is a piece of code, for JB 4.1 / 4.2:

#include <utils/RefBase.h>
#include <binder/IBinder.h>
#include <binder/MemoryHeapBase.h>
#include <gui/ISurfaceComposer.h>
#include <gui/SurfaceComposerClient.h>

static void do_save(const char *filename, const void *buf, size_t size) {
    int out = open(filename, O_RDWR|O_CREAT, 0666);
    int len = write(out, buf, size);
    printf("Wrote %d bytes to out.\n", len);
    close(out);
}

int main(int ac, char **av) {
    android::ScreenshotClient ssc;
    const void *pixels;
    size_t size;
    int buffer_index;

    ssc.update(
        android::SurfaceComposerClient::getBuiltInDisplay(
            android::ISurfaceComposer::eDisplayIdMain));
    printf("Captured: w=%d, h=%d, format=%d\n",
       ssc.getWidth(), ssc.getHeight(), ssc.getFormat());
    size = ssc.getSize();
    do_save(av[1], pixels, size);
    return 0;
}
share|improve this answer

if you want to do screen capture from Java code in Android app AFAIK you must have Root provileges.

share|improve this answer

Framebuffer seems the way to go, it will not always contain 2+ frames like mentioned by Ryan Conrad. In my case it contained only one. I guess it depends on the frame/display size.

I tried to read the framebuffer continuously but it seems to return for a fixed amount of bytes read. In my case that is (3 410 432) bytes, which is enough to store a display frame of 854*480 RGBA (3 279 360 bytes). Yes, the frame in binary outputed from fb0 is RGBA in my device. This will most likely depend from device to device. This will be important for you to decode it =)

In my device /dev/graphics/fb0 permissions are so that only root and users from group graphics can read the fb0. graphics is a restricted group so you will probably only access fb0 with a rooted phone using su command.

Android apps have the user id (uid) app_## and group id (guid) app_## .

adb shell has uid shell and guid shell, which has much more permissions than an app. You can actually check those permissions at /system/permissions/platform.xml

This means you will be able to read fb0 in the adb shell without root but you will not read it within the app without root.

Also, giving READ_FRAME_BUFFER and/or ACCESS_SURFACE_FLINGER permissions on AndroidManifest.xml will do nothing for a regular app because these will only work for 'signature' apps.

share|improve this answer
How did you discovery that you framebuffer format is RGBA? – Guilherme Torres Castro Mar 18 at 1:08
I opened a raw framebuffer image with GIMP. When I set it to open as RGB, the image was not ok, when I set it as RGBA - it was ok ;) – Rui Marques Mar 18 at 9:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.