我开发了一个Android应用程序,我必须捕获整个滚动布局的屏幕截图。
String mPath = Environment.getExternalStorageDirectory().toString() + "/" + "image.png";
Bitmap bitmap;
View v1 = getView().findViewById(R.id.scroll);
v1.setDrawingCacheEnabled(true);
bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
OutputStream fout = null;
imageFile = new File(mPath);
try {
fout = new FileOutputStream(imageFile);
bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fout);
fout.flush();
fout.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
但它只是在设备的屏幕上显示该部分的屏幕截图。