Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using the old version of the Google Maps Android API, I was able to capture a screenshot of the google map to share via social media. I used the following code to capture the screenshot and save the image to a file and it worked great:

public String captureScreen()
{
    String storageState = Environment.getExternalStorageState();
    Log.d("StorageState", "Storage state is: " + storageState);

    // image naming and path  to include sd card  appending name you choose for file
    String mPath = this.getFilesDir().getAbsolutePath();

    // create bitmap screen capture
    Bitmap bitmap;
    View v1 = this.mapView.getRootView();
    v1.setDrawingCacheEnabled(true);
    bitmap = Bitmap.createBitmap(v1.getDrawingCache());
    v1.setDrawingCacheEnabled(false);

    OutputStream fout = null;

    String filePath = System.currentTimeMillis() + ".jpeg";

    try 
    {
        fout = openFileOutput(filePath,
                MODE_WORLD_READABLE);

        // Write the string to the file
        bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fout);
        fout.flush();
        fout.close();
    } 
    catch (FileNotFoundException e) 
    {
        // TODO Auto-generated catch block
        Log.d("ImageCapture", "FileNotFoundException");
        Log.d("ImageCapture", e.getMessage());
        filePath = "";
    } 
    catch (IOException e) 
    {
        // TODO Auto-generated catch block
        Log.d("ImageCapture", "IOException");
        Log.d("ImageCapture", e.getMessage());
        filePath = "";
    }

    return filePath;
}

However, the new GoogleMap object used by V2 of the api does not have a "getRootView()" method like MapView does.

I tried to do this:

    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.basicMap);

    View v1 = mapFragment.getView();

But the screenshot that I get does not have any map content and looks like this: Blank Map Screenshot

Has anyone figured out how to take a screenshot of the new Google Maps Android API V2?

Update

I also tried to get the rootView this way:

View v1 = getWindow().getDecorView().getRootView();

This results in a screenshot that includes the action bar at the top of the screen, but the map is still blank like the screenshot I attached.

Update

A feature request has been submitted to Google. Please go star the feature request if this is something you want google to add in the future: Add screenshot ability to Google Maps API V2

share|improve this question
now they use vectors is what i read some where. not sure how to do it though – Harsha M V Dec 9 '12 at 19:38

2 Answers

up vote 4 down vote accepted

Since the new Android API v2 Maps are displayed using OpenGL, there are no possibilities to create a screenshot.

share|improve this answer
2  
Can you cite a source for this answer? – spotdog13 Dec 10 '12 at 16:49
I got this mainly from the official API docs in addition with this post – Greeny Dec 11 '12 at 8:35
I've seen questions like this: stackoverflow.com/questions/3310990/… though, which seem to suggest it is possible to take a screenshot of an OpenGL layer...although I know nearly nothing about OpenGL so that's why I'm looking for help... – spotdog13 Dec 11 '12 at 15:27
The problem is that the OpenGL SurfaceView, which is used to display the map, is blackboxed away through the MapView/MapFragment... – Greeny Dec 11 '12 at 16:06
2  
You can upvote/star the following feature request for Google to add screenshot support in the API: code.google.com/p/gmaps-api-issues/issues/detail?id=4898 – mdiener Feb 27 at 21:32
show 3 more comments

Eclipse DDMS can capture the screen even it's google map V2.

Try to call /system/bin/screencap or /system/bin/screenshot if you have the "root". I learned that from How Eclipse android DDMS implement "screen capture"

share|improve this answer
Yes, I'm aware of that, but I want to be able to take a screenshot programmatically (i.e. in code) on a non-rooted device. This was possible in the first version of the Maps API for Android, but not the second (due to reasons mentioned in the accepted answer). – spotdog13 Feb 6 at 12:39
Yes, this is also my problem. But it seems not possible if google map V2. DDMS use the screencap or screensnap android provided via a process (adb pull) which has the necessary authority. But normal android app do not the authority(I find from stackoverflow yesterday ). Hope the next version of Google map will enhance it. – andrewwang1TW Feb 8 at 6:02
Yes, it's frustrating that they don't make the OpenGL layer available, but I imagine it has something to do with copyright or security. – spotdog13 Feb 8 at 16:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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