I am having a video running.
and when i pause the video and click on capture button the screen should be captured.
how can this be done?
i tried the following code to capture but its taking a blank picture.
View v1 = myVideoView.getRootView();
System.out.println("Root View : "+v1);
v1.setDrawingCacheEnabled(true);
Bitmap bm = v1.getDrawingCache();
display_image.setImageBitmap(bm);
System.out.println("Bitmap : "+bm);
please suggest me a way.
Thanks in advance