my question is how do I take a screenshot using the built in screen capture. Any hints or sample code would be greatly appreciated.
Asked
Active
Viewed 5,004 times
2 Answers
13
There are two ways you can try,
- Using Eclipse
Open the Devices view in Eclipse ( Window Menu --> Show View Option --> Other, Android --> Devices), and there's a toolbar button on the right side labeled Screen Capture
Using Android Code
Bitmap bitmap; View v1 = MyView.getRootView(); v1.setDrawingCacheEnabled(true); bitmap = Bitmap.createBitmap(v1.getDrawingCache()); v1.setDrawingCacheEnabled(false);

Krish
- 437
- 4
- 14
-
3then you should accept the answer by tick marking on tick mark, which is on the rightside of my answer. so it can be useful for others. – Krish Mar 26 '12 at 08:37
-
@Krish I had tried to implement the given codes of lines but it is throwing exception on third line why it is so – Nikhil Singh Mar 09 '16 at 11:09
2
Click on DDMS select emulator from left side and then click on Camera icon.. and then save into your pc..

RajaReddy PolamReddy
- 22,428
- 19
- 115
- 166