I was trying to implement this feature in Apache Cordova PhoneGap, but it doesn't work for me
How to programmatically take a screenshot in Android?
How can I programmatically take a screenshot of a webview, capturing the full page?
When I call to
WebView browserView = (WebView) findViewById(R.id.content);
I am actually getting a reference to the following object
LinearLayoutSoftKeyboardDetect
and not to the WebView.
Any idea on how to fix it?
Cordova/PhoneGap-based Applications encapsulate the WebView into a DroidGap class that ultimately extends from CordovaActivity CordovaActivity. This Activity holds a protected component called containing the wiew CordovaWebView appView and configured with an ID equals to 100:
Thus, you should be able to find the View by seeking the ID 100 doing something like this:
This should work.