1. 程式人生 > >擷取當前螢幕獲得Bitmap

擷取當前螢幕獲得Bitmap

<span style="font-size:24px;">private Bitmap generateSpringCard() {
		View view = getWindow().getDecorView();
		view.setDrawingCacheEnabled(true);
		view.buildDrawingCache();
		return view.getDrawingCache();
	}</span>