2

I want to create an activity similar to the "Send Feedback/Report and Issue" page on Google+. Is there an api to capture the screenshot, or is this manufacturer dependent?

  • possible duplicate of [Launch FeedbackActivity in my application like in Android Hangouts](http://stackoverflow.com/questions/16644933/launch-feedbackactivity-in-my-application-like-in-android-hangouts) – rds Jun 10 '14 at 11:57

1 Answers1

0

There is currently no exposed API for accessing the screen buffer. You may find some success in using View.getDrawingCache(boolean) which returns a Bitmap of the View which you may then be able to save and use.

http://developer.android.com/reference/android/view/View.html#getDrawingCache(boolean)

LeffelMania
  • 12,765
  • 4
  • 32
  • 34