So I'm trying to do a screen shot of a VideoView. I figured the easiest way would be:
videoView.setDrawingCacheEnabled(true);
Then when I need to take a screenshot:
Bitmap screenshot = videoView.getDrawingCache();
But for some reason the bitmap I get back is just black every time. Anyone had any success with this? I also tried:
Bitmap bitmap = Bitmap.createBitmap(videoView.getWidth(), videoView.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
videoView.draw(canvas);
But once again, this returns me a black image. I can see that the VideoView is hardly even documented in the Android javadocs. Any help?