Issue
Is there a way to find out the path used by android to save screenshots?
Can I get the path from a code?
Solution
Android's API has no fixed path for screenshots but
File pix = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File screenshots = new File(pix, "Screenshots");
might work. That's what ICS uses as path.
Answered By - zapl
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.