我尝试了下面的代码,但是当我运行它时,它在 android mobile 上给出了一个黑屏图像,在模拟器上它给出了一个文件,通过打开这个文件我得到消息预览不可用。
View v = activity.getWindow().getDecorView();
v.setDrawingCacheEnabled(true);
v.destroyDrawingCache();
int width = activity.getWindowManager().getDefaultDisplay().getWidth();
int height = activity.getWindowManager().getDefaultDisplay().getHeight();
v.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
v.layout(0, 0, width, height);
v.buildDrawingCache(true);
Bitmap b = Bitmap.createBitmap(v.getDrawingCache());
v.setDrawingCacheEnabled(false); // clear drawing cache
FileOutputStream fos = null;
File fTree = new File(sdCardRoot,"/fi.png");
fTree.createNewFile();
try {
fos = new FileOutputStream(fTree,true);
if (null != fos) {
b.compress(Bitmap.CompressFormat.PNG, 90, fos);
fos.flush();
fos.close();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
请有人帮忙。谢谢你。