4
我想從後臺服務中打開WebView中的URL,然後截取隱藏的WebView的屏幕截圖。Android Open WebView後臺服務和捕獲屏幕截圖
有趣的是它不工作!這可能嗎?一些代碼片段:
webView.setVisibility(View.INVISIBLE);
...
final Picture picture = webView.capturePicture();
final Bitmap b = Bitmap.createBitmap(picture.getWidth(), picture.getHeight(), Bitmap.Config.ARGB_8888);
final Canvas c = new Canvas(b);
picture.draw(c);
....
感謝
這不可能由於安全 – DroidBender
請看看該帖子:http://stackoverflow.com/questions/9745988/how-can-i-programmatically-take-a-screenshot-of-a-webview- capture-the-full-pa –
Stefan - 謝謝我有保存webview的代碼,問題是隱藏在後臺服務中。 – user894199