public void onCreate(Bundle savedInstanceState) {
//
//setContentView(R.layout.main2);
getWindow().getDecorView().setDrawingCacheEnabled(true);
getWindow().getDecorView().measure(
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
getWindow().getDecorView().layout(0, 0, getWindow().getDecorView().getMeasuredWidth(),
getWindow().getDecorView().getMeasuredHeight());
getWindow().getDecorView().buildDrawingCache();
Bitmap bi = getWindow().getDecorView().getDrawingCache();
}
//
//setContentView(R.layout.main2);
getWindow().getDecorView().setDrawingCacheEnabled(true);
getWindow().getDecorView().measure(
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
getWindow().getDecorView().layout(0, 0, getWindow().getDecorView().getMeasuredWidth(),
getWindow().getDecorView().getMeasuredHeight());
getWindow().getDecorView().buildDrawingCache();
Bitmap bi = getWindow().getDecorView().getDrawingCache();
}