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.

This shouldn't be too tough of a question. I want the ability to take a screenshot of my layout (view) and send it via sms. Can someone walk me though the steps?

Thanks!

Edit: It doesn't have to be a 'screenshot' I guess, just as long as we can get all of the rendered pixels from a view somehow.

share|improve this question
You need run the search before asking the question. Here's almost exact dupe goo.gl/K9ezs – Bostone May 9 '11 at 16:54
possible duplicate of Take Screenshot of Android screen and save to SD card – Binyamin Sharet May 9 '11 at 16:55

1 Answer

up vote 15 down vote accepted

Around the web I found some snippets of code that I was able to get working together.

Here is a solution that works well:

Setting up your Root layout:

View content = findViewById(R.id.layoutroot);
content.setDrawingCacheEnabled(true);

Function to get the rendered view:

private void getScreen()
{
    View content = findViewById(R.id.layoutroot);
    Bitmap bitmap = content.getDrawingCache();
    File file = new File("/sdcard/test.png");
    try 
    {
        file.createNewFile();
        FileOutputStream ostream = new FileOutputStream(file);
        bitmap.compress(CompressFormat.PNG, 100, ostream);
        ostream.close();
    } 
    catch (Exception e) 
    {
        e.printStackTrace();
    }
}
share|improve this answer
9  
Remember to add <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> to your AndroidManifest and instead of hardcoding /sdcard/ use File file = new File( Environment.getExternalStorageDirectory() + "/test.png"); – Macarse Jun 7 '11 at 12:22
@Peanut i used this solution. test.png is created in sdcard. but actully the image is not created it shows 0kb. and i get the null pointer exception here " bitmap.compress(CompressFormat.PNG, 100, ostream);" – vnshetty Jul 21 '11 at 4:16
1  
Got the solution here thanks.. stackoverflow.com/questions/2339429/… – vnshetty Jul 21 '11 at 5:13

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.