tags:

views:

40

answers:

2

i want to create a bitmap of whats being currently displayed of my app, one thing i went into is cant read FB buffer requires root, would like to know if it is possible to create a image file for the screen, please i want the help to code this, no 3rd party intents , thanks, answers would be much appreciated

A: 

Hi,

From your Activity (pseudo-code):

Bitmap bm = Bitmap.create...
Canvas canvas = new Canvas(bm);
getWindow.getDecorView().draw(canvas);
ognian
A: 

You can use FFMPEG to capture the Screen

Vinay
apparently i have found nothing working, seems like root is needed, if this is the case then thats a bummer!
SoftReference